Skip to content

Instantly share code, notes, and snippets.

@cdolek
Created February 13, 2015 20:04
Show Gist options
  • Save cdolek/4ad30938a88219811f5c to your computer and use it in GitHub Desktop.
Save cdolek/4ad30938a88219811f5c to your computer and use it in GitHub Desktop.
Creating folders from 0 to 12 -- zero padded (works on mac os x)
mkdir $(seq -f '%02.0f' 1 12)
creates folders:
01 02 03 04 05 06 07 08 09 10 11 12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment