Skip to content

Instantly share code, notes, and snippets.

@ncimino
Created November 19, 2012 18:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ncimino/4112727 to your computer and use it in GitHub Desktop.
Save ncimino/4112727 to your computer and use it in GitHub Desktop.
Bash loop through files - show zip contents
rm contents.txt
ls *.zip > filelist
for FILENAME in `cat filelist`
do
unzip -l $FILENAME >> contents.txt
done
rm filelist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment