Skip to content

Instantly share code, notes, and snippets.

@vnoitkumar
Created January 29, 2019 06:39
Show Gist options
  • Save vnoitkumar/f015cc9d9ed4a5f833ecaad1f8185a92 to your computer and use it in GitHub Desktop.
Save vnoitkumar/f015cc9d9ed4a5f833ecaad1f8185a92 to your computer and use it in GitHub Desktop.
#!/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