Created
September 18, 2018 22:11
-
-
Save progress44/3b979bef607e5b5425a5d79322721fdf to your computer and use it in GitHub Desktop.
Script to open aar and jar files
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 | |
unzip ${1}.${2} -d ${1} # or other extracting tool | |
# Change whatever you need | |
jar cvf ${1}_.${2} -C ${1} . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment