Created
November 4, 2020 00:10
-
-
Save Langerz82/e44097203f4ea7ddf3acdf2911009ca3 to your computer and use it in GitHub Desktop.
encodes ROM zip with x encode zip file
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 | |
mkdir tmp | |
cd tmp | |
unzip -v ../$1.zip | |
unzip -v ../$1x.zip | |
rm ../$1.zip | |
zip -v ../$1.zip *.* | |
cd .. | |
rm -f -r tmp | |
echo "Completed" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment