Skip to content

Instantly share code, notes, and snippets.

@sente
Created January 6, 2010 13:38
Show Gist options
  • Save sente/270281 to your computer and use it in GitHub Desktop.
Save sente/270281 to your computer and use it in GitHub Desktop.
#!/bin/sh
dir=$1
find $dir -type f -name "*.zip" -printf "%TY-%Tm-%Td\t%h/%f\n" | sort | while read line; do
echo "unzip -jod $line"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment