mirror of https://github.com/einverne/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
906 B
30 lines
906 B
7 years ago
|
#!/bin/bash -
|
||
|
#===============================================================================
|
||
|
#
|
||
|
# FILE: install_android_decompiler.sh
|
||
|
#
|
||
|
# USAGE: ./install_android_decompiler.sh
|
||
|
#
|
||
|
# DESCRIPTION:
|
||
|
#
|
||
|
# OPTIONS: ---
|
||
|
# REQUIREMENTS: ---
|
||
|
# BUGS: ---
|
||
|
# NOTES: ---
|
||
|
# AUTHOR: YOUR NAME (),
|
||
|
# ORGANIZATION:
|
||
|
# CREATED: 2018年01月31日 15时30分39秒
|
||
|
# REVISION: ---
|
||
|
#===============================================================================
|
||
|
|
||
|
set -o nounset # Treat unset variables as an error
|
||
|
|
||
|
wget https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool
|
||
|
mv apktool /usr/local/bin/apktool
|
||
|
chmod +x /usr/local/bin/apktool
|
||
|
wget https://bitbucket.org/iBotPeaches/apktool/downloads/apktool_2.3.1.jar
|
||
|
mv apktool_2.3.1.jar /usr/local/bin/apktool.jar
|
||
|
chmox +x /usr/local/bin/apktool.jar
|
||
|
|
||
|
|