Last active
January 2, 2020 15:53
-
-
Save Dliv3/07984043088592a6b8d1b41a6d1099f3 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
input=$1 | |
output=$2 | |
echo "[*] decompiling jars in $input to $output ..." | |
input_jar=`ls $input` | |
for i in $input_jar | |
do | |
echo "[*] decompiling $i ..." | |
/opt/jadx/bin/jadx -d $output/$i $input/$i | |
sleep 2 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment