Skip to content

Instantly share code, notes, and snippets.

@hiddenchemistry
Created April 16, 2014 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hiddenchemistry/10846827 to your computer and use it in GitHub Desktop.
Save hiddenchemistry/10846827 to your computer and use it in GitHub Desktop.
Dropbox: Create scaffolding for Made by Many client folders
#!/bin/bash
client=${1:-Untitled Client}
mkdir -v "$client"
mkdir -v "$client/Assets"
mkdir -v "$client/Assets/Fonts"
mkdir -v "$client/Assets/Logos"
mkdir -v "$client/Assets/Photos"
mkdir -v "$client/Assets/Videos"
mkdir -v "$client/Assets/Brand Guidelines"
mkdir -v "$client/Proposals"
mkdir -v "$client/Documents"
mkdir -v "$client/Legal"
mkdir -v "$client/Finance"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment