Linux用户alias文件配置方法
程序员文章站
2022-04-03 20:01:40
这篇文章主要介绍了Linux用户alias文件配置方法,需要的朋友可以参考下... 17-03-20...
修改 ~/.bashrc 文件,以配置用户自己定义的alias
$> vi ~/.bashrc
显示
# .bash_profile # get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # user specific environment and startup programs path=$path:$home/bin export path
在文件最后,添加自定义的alias语句
echo "my alias has started successfully!" echo "type 'alias' to see more about this!" # my alias la='ls -al --color=auto' # my-end
这次更改需要在下次登录时生效。
若要立即生效,输入:
$> source ~/.bashrc
上一篇: Linux的特殊权限SUID SGID和SBIT讲解
下一篇: PE系统下找不到硬盘的多种解决方法