Linux 设置 alias 重启后失效
要检查 ~ 目录下,是否有如下两个文件:
- .bashrc
- .bash_profile
把要增加的 alias ,增加到 .bashrc
root@nas-BE-92-CD:~# cat .bashrc
alias ll='ls -alh'
把运行 .bashrc 的内容,加入 .bash_profile
root@nas-BE-92-CD:~# cat .bash_profile
source ~/.bashrc
要检查 ~ 目录下,是否有如下两个文件:
把要增加的 alias ,增加到 .bashrc
root@nas-BE-92-CD:~# cat .bashrc
alias ll='ls -alh'
把运行 .bashrc 的内容,加入 .bash_profile
root@nas-BE-92-CD:~# cat .bash_profile
source ~/.bashrc