我将以下内容添加到我的.bash_profile
alias lr='ls -hartl'
alias q='grep -i'
alias get='curl -OL'
然后
source .bash_profile
别名按预期工作。
但是,如果我关闭外壳并再次打开它(Ctrl++ Alt)T,我必须source .bash_profile
再次执行更改。
source .bash_profile
有没有办法让它永久化,这样我每次打开新外壳时都不必这样做?
我将以下内容添加到我的.bash_profile
alias lr='ls -hartl'
alias q='grep -i'
alias get='curl -OL'
然后
source .bash_profile
别名按预期工作。
但是,如果我关闭外壳并再次打开它(Ctrl++ Alt)T,我必须source .bash_profile
再次执行更改。
source .bash_profile
有没有办法让它永久化,这样我每次打开新外壳时都不必这样做?
正如以下链接中指出的那样(@Terrance 发布) https://www.stefaanlippens.net/bashrc_and_others/
答案是将信息添加到
.bashrc
not.bash_profile
您可以配置您的 gnome-terminal 配置文件以打开新选项卡作为登录会话,以便重新读取 .bash_profile。