Created
January 29, 2019 06:39
-
-
Save vnoitkumar/f015cc9d9ed4a5f833ecaad1f8185a92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
read -p "Enter the app name : " appName | |
if [ -z "$appName" ]; then | |
echo "App Name required." | |
exit | |
fi | |
ng new $appName | |
cd $appName | |
ng serve --open |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment