# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
您可以将此类别名放在
~/.bash_aliases
文件中。该文件由
~/.bashrc
. 在 Ubuntu 10.04 上,需要取消注释以下行以启用~/.bash_aliases
. 在 Ubuntu 11.04 及更高版本上,它已经启用:别名命令将在任何新终端上可用。要在任何现有终端上使用别名命令,需要
~/.bashrc
从该终端获取,将您的行添加
~/.bashrc
到~/.profile
/~/.bash_profile
中以进行远程登录。如果您希望为所有用户执行命令,请将其放入
/etc/bash.bashrc
.编辑:在最新版本的 Ubuntu 中,
~/.bashrc
自动 source~/.bash_aliases
,因此最好将永久别名放入此文件中。您可以将以下函数添加到您的 .bashrc 文件中。
然后打开一个新终端或
source ~/.bashrc
在当前终端中运行。您现在可以使用permalias
命令创建永久别名,例如permalias cls=clear
.有关和之间的区别,请参见http://www.joshstaiger.org/archives/2005/07/bash_profile_vs.html
~/.bash_profile
~/.bashrc
~/.bashrc
每次打开新终端时都会运行,而~/.bash_profile
不是。~/.bashrc
包含以下内容,其中包括该~/.bash_aliases
文件。这将是添加别名的最合适的位置。将该命令粘贴在您的最后一行
~/.bash_profile