Last active
March 10, 2020 11:45
-
-
Save atgmello/03b7b59105a14048aeab617ac6aad513 to your computer and use it in GitHub Desktop.
Unzipping automation for the DS4A LATAM 2020 course cases.
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/sh | |
| cd ./$1 | |
| for z in *.zip; do | |
| echo "Now unzipping ${z}" | |
| unzip $z -n -d ../../cases/$1/ | |
| done | |
| cd ../../cases/$1/ | |
| rm -rf __MAC* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's a great suggestion!
I've just updated the file with this change.