linux系统可以把一些常用的命令做一个简短的别名
alias tomcat="cd /usr/local/tomcat",但是退出系统后这些别名就失效了,如何把别名写入配置文件:
首先找到登陆的用户的文件夹,比如ROOT登陆的时候,在/目录下进入ROOT目录编辑.bash_profile文件
比如可以这样编辑(alias 这两行是加上去的),当然,系统的环境变量也是可以写在这里的
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
alias tomcat="cd /usr/local/tomcat"
alias myip="/sbin/ifconfig | grep -a 'inet addr' | sed -e '/127//.0//.0//.1/d;s/.*inet addr://([0-9//.]//+//).*///1/'"
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
unset USERNAME
在编辑.bash_profile文件后立即生效的命令
source .bash_profile