红联Linux门户
Linux帮助

ubuntu增加终端命令别名的方法

发布时间:2015-11-07 11:07:09来源:linux网站作者:ameyume

修改.bashrc文件,增加别名。

格式:alias 别名='被别名替代的命令'


实例如下:

# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'

alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
alias g='gedit'
fi

# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias b='cd ..'   #返回到上一级目录
alias g='gedit' #打开文本编辑器


linux给命令取别名和为某些操作设置快捷键:http://www.linuxdiyf.com/linux/14486.html

如何在ubuntu下设置永久的alias别名:http://www.linuxdiyf.com/linux/13882.html