Linux之alias:
======================================
1.查看当前别名:alias
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
2.设置临时别名:
# alias sto="/usr/local/apache2/bin/apachect1 stop" //apache停止设为sto
#alias sta="/usr/local/apache2/bin/apachect1 start" //apache启动设为sta
3.取消别名:
# unalias sto sta
4.设置永久别名:
a.在系统别名目录中添加别名配置文件,但这种方式定义的别名对所有的用户都生效,通常不建议使用这种方法。
b.全局命令:添加命令到/etc/profile中:
# echo "alias haha='netstat'">>/etc/profile //一般用‘>>’添加到文件末尾,防止破坏系统文件。
c.单个用户别名设置:
# echo "alias vi='vim'">>~/.bash_profile //添加命令道当前用户家目录。
重载生效:source ~/.bash_profile