欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

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