Skip to content

Instantly share code, notes, and snippets.

@seanredmond
Created November 29, 2011 19:39
Show Gist options
  • Save seanredmond/1406127 to your computer and use it in GitHub Desktop.
Save seanredmond/1406127 to your computer and use it in GitHub Desktop.
Quickly create sequential files in OS X
# jot X Y: Generate X numbers starting with Y
for i in $(jot 11 2000); do touch ${i}.html; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment