Created
March 16, 2015 21:27
-
-
Save hharper/42f55e5e6792559110dc to your computer and use it in GitHub Desktop.
Homework, W01D01 - HH
This file contains 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
bash() { | |
mkdir GeneralAssembly | |
cd GeneralAssembly | |
mkdir Homework | |
mkdir Notes | |
mkdir Projects | |
mkdir Outcomes | |
cd Homework | |
mkdir week01 | |
cd week01 | |
mkdir day01 | |
cd ../../ | |
cd Notes | |
mkdir week01 | |
cd week01 | |
mkdir day01 | |
cd ../../ | |
touch README.md | |
echo "Keep calm and carry on" > README.md | |
echo "Hey there,student! Welcome to WDI6! I just set up this directory tree for you:" | |
tree | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment