Created
May 22, 2017 18:33
-
-
Save joshuastronomy/c7675d58a8b41a0d24af9bfd0b0041cd to your computer and use it in GitHub Desktop.
day1proj
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 | |
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment