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 | |
# check that 7z is installed | |
command -v 7z >/dev/null 2>&1 || { echo >&2 "This script requires 7z. Aborting."; exit 1; } | |
jdgui="/opt/jd-cli" | |
dex2jar="/opt/dex2jar-2.0/d2j-dex2jar.sh" | |
if [ $# -eq 0 ] | |
then |