Create a Nested Set of Folders in a Single Step
From HowToGeek
If you need to create a nested directories, you don't need to slowly go into each folder and create them... just use the -p argument for the mkdir command, and type out the full path that you want to create:
mkdir -p full/path/with/directories/etc
