Skip to content

Instantly share code, notes, and snippets.

@joshuastronomy
Created May 22, 2017 18:33
Show Gist options
  • Save joshuastronomy/c7675d58a8b41a0d24af9bfd0b0041cd to your computer and use it in GitHub Desktop.
Save joshuastronomy/c7675d58a8b41a0d24af9bfd0b0041cd to your computer and use it in GitHub Desktop.
day1proj
#!/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