Skip to content

Instantly share code, notes, and snippets.

@jciancio
Created September 29, 2016 17:07
Show Gist options
  • Save jciancio/697af474d98bcaef32fd263befd1f690 to your computer and use it in GitHub Desktop.
Save jciancio/697af474d98bcaef32fd263befd1f690 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "This will create a 'wyncode' folder in your Desktop"
mkdir ~/Desktop/wyncode
for unit in 'ruby-basic' 'ruby-advanced' 'web-basic' 'web-advanced-and-javascript' 'rails-basic' 'rails-2' 'javascript-advanced-and-web-security' 'rails-advanced'
do
mkdir ~/Desktop/wyncode/$unit
echo "Created a folder for: $unit!"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment