比如,我们经常将ll用作ls -lh命令的别名。然后,我们输入ll,终端将会返回一个关于当前目录的长列表。但是,当我们输入sudo ll时,终端将会返回:
$ sudo ll => sudo: ll: command not found
解决方案
我们给shutdown命令创建一个别名,当普通用户运行的时候尝试输入这个别名去关机,我们可以看到系统不会关机。想要运行/sbin/shutdown需要root权限,然而sudo会完全忽略shutdown的这个别名。解决办法是,我们需要添加另一个别名:文章源自爱尚资源教程网-https://www.23jcw.net/4503.html
alias sudo='sudo '
sudo后面的那个空格将会告诉bash,去检查跟在空格后面的命令是否也是一个别名。bash手册(通过man bash查看)上面是这么描述的:文章源自爱尚资源教程网-https://www.23jcw.net/4503.html
If the last character of the alias value is a blank, then the next command word following the alias is also checked for alias expansion. 如果别名值的最后一个字符是空格,将会检查”跟在别名后的下一个命令”是否也是别名扩展。文章源自爱尚资源教程网-https://www.23jcw.net/4503.html
下面是我机器.bash_aliases文件中的一些别名设置:文章源自爱尚资源教程网-https://www.23jcw.net/4503.html
# Shortcuts alias ll='ls -lh' alias la='ls -lhA' alias l='ls' alias c='clear' alias x='exit' alias q='exit' # Don't run shutdown if rtorrent is running - as long as there's a screen with "tor" in its name, shutdown won't run (unless you call /sbin/shutdown, or unalias it) alias shutdown='/home/james/scripts/safe.shutdown.sh' # When using sudo, use alias expansion (otherwise sudo ignores your aliases) alias sudo='sudo '文章源自爱尚资源教程网-https://www.23jcw.net/4503.html文章源自爱尚资源教程网-https://www.23jcw.net/4503.html
相关文章
版权声明:文章图片资源来源于网络,如有侵权,请留言删除!!!