Created
May 22, 2017 18:33
-
-
Save joshuastronomy/c7675d58a8b41a0d24af9bfd0b0041cd to your computer and use it in GitHub Desktop.
Revisions
-
joshuastronomy created this gist
May 22, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ #!/bin/bash mkdir project cd project touch index.html styles.css README.md echo "<link rel='stylesheet' href='styles.css'><h1>Hello World!" > index.html echo "h1{color:red;font-family:sans-serif;text-decoration:underline;}" > styles.css echo "Hello World!" > README.md sleep 2 read -p "Press [enter] to continue..." echo "Congratulations!" cd .. mkdir projectmove mv project projectmove