Created
May 20, 2013 03:51
-
-
Save bugsysop/5610329 to your computer and use it in GitHub Desktop.
Install script for quick static site
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 | |
| # | |
| # Install script for quick static site | |
| # Source : https://github.com/stevedev/html_template | |
| # | |
| curl -L http://github.com/stevedev/html_template/zipball/master > stevedev-html_template.zip | |
| unzip stevedev-html_template.zip | |
| rm -fr stevedev-html_template.zip | |
| mv stevedev-html_template* newsite | |
| rm -fr newsite/scripts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment