Created
September 17, 2017 22:40
-
-
Save beeblebrox3/7d585ecf426ec4ce905a4a4bd9f44981 to your computer and use it in GitHub Desktop.
This file contains 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 | |
### star_create_project project_name | |
ProjectName="$1" | |
wget -O "$ProjectName.zip" https://github.com/beeblebrox3/star/archive/master.zip | |
unzip "$ProjectName.zip" | |
mv star-master "$ProjectName" | |
rm "$ProjectName.zip" | |
cd "$ProjectName" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment