Skip to content

Instantly share code, notes, and snippets.

@Dliv3
Last active January 2, 2020 15:53
Show Gist options
  • Save Dliv3/07984043088592a6b8d1b41a6d1099f3 to your computer and use it in GitHub Desktop.
Save Dliv3/07984043088592a6b8d1b41a6d1099f3 to your computer and use it in GitHub Desktop.
#!/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