Created
February 1, 2019 20:15
-
-
Save RobCranfill/29d54d2eff8053be9cdab480e0557122 to your computer and use it in GitHub Desktop.
Extract a boatload of ZIP files (big ones downloaded from my "good riddance to Flickr") in parallel. Uses GNU "parallel".
This file contains hidden or 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
| #!/bin/bash | |
| # extract all zip files in parallel | |
| find . -name "*zip" | parallel --jobs 8 --progress unzip {} -d {/.}.out |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment