Skip to content

Instantly share code, notes, and snippets.

@theill
Created March 12, 2009 11:23
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 theill/78025 to your computer and use it in GitHub Desktop.
Save theill/78025 to your computer and use it in GitHub Desktop.
In case you are not a shell wiz you may switch to Ruby to execute simple tasks e.g. unpacking a number of zip files
ruby -e "1999.upto(2009) do |year| 1.upto(4) do |no| cmd = \"unzip #{year}_#{no}.zip -d #{year}_#{no}\"; system cmd; end; end"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment