Skip to content

Instantly share code, notes, and snippets.

@willshepp28
Created May 24, 2017 13:19
Show Gist options
  • Save willshepp28/18ba702659aa6494b1964a258169e896 to your computer and use it in GitHub Desktop.
Save willshepp28/18ba702659aa6494b1964a258169e896 to your computer and use it in GitHub Desktop.
if [ -d "project" ]; then
rm -rf project
fi
mkdir project
cd project
touch index.html style.css README.md
echo '<link rel="stylesheet" href="styles.css"><h1>Hello World</h1>' > index.html
echo "h1{color:red; font-family: sans-serif; text-decoration: underline;}" > styles.css
echo "Hello World!" > README.md
read -p "Press any key to continue"...
echo "Congradulations"
cd ..
mkdir proj3
mv project proj3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment