修改用户目录下的一个隐藏文件.profile
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
PATH="$HOME/android/android-sdk-linux_x86-1.6_r1/platform-tools:$PATH";
PATH="/home/fanxu/android/decompiling/apktool:$PATH";
PATH="/home/fanxu/android/decompiling/dex2jar:$PATH";
export PATH
类似这种,添加一条进去就可以了
注意,要想立即生效,要执行命令
source .profile