Skip to content

Instantly share code, notes, and snippets.

@ravikumar-n
Created April 4, 2014 08:29
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 ravikumar-n/50782f51b49304f7540a to your computer and use it in GitHub Desktop.
Save ravikumar-n/50782f51b49304f7540a to your computer and use it in GitHub Desktop.
Create 300 Copies of image starting with pic0001 to pic0300 # Bash Expression
for n in {0001..0300}; do cp pic.jpg pic$n.jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment