-
-
Save jazzsequence/d965be7c5558e4af2215b3104f681d82 to your computer and use it in GitHub Desktop.
Bash loop through zip files & extract
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ls *.zip > filelist | |
for FILENAME in `cat filelist` | |
do | |
unzip $FILENAME | |
rm $FILENAME | |
done | |
rm filelist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment