1
0
Fork 0
env/.pwn/bin/apktool

18 lines
446 B
Bash
Executable File

#!/bin/sh
set -e
BASE="$HOME/.pwn/apktool"
if [[ ! -d "$BASE/bin" ]]; then
mkdir -p "$BASE/bin"
wget --output-document "$BASE/bin/apktool" \
https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool
chmod +x "$BASE/bin/apktool"
wget --output-document "$BASE/bin/apktool.jar" \
https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.5.0.jar
chmod +x "$BASE/bin/apktool.jar"
fi
"$BASE/bin/apktool" "$@"