mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-12 14:02:33 +00:00
11 lines
303 B
Bash
Executable file
11 lines
303 B
Bash
Executable file
#!/bin/bash -ex
|
|
VERSION=2.2.4
|
|
|
|
mkdir bin
|
|
cd bin
|
|
wget https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool
|
|
wget "https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_$VERSION.jar"
|
|
ln -s "apktool_$VERSION.jar" apktool.jar
|
|
chmod 755 apktool
|
|
chmod 755 apktool.jar
|
|
cd ..
|