标签: bash shell unix
我试图让screenfetch命令自动执行。
我使用
nano~/.bash_profile
输入屏幕截图,按下ctrl O,ctrl X,清除。
我在终端输入source nano~/.bash_profile时 它工作,它实际上做了screenfetch应该做的。但是当我关闭终端并再次打开它时,它没有自动执行screenfetch命令。它保存在bash_profile中,因此应该自动执行。我在哪里犯了错误?
source nano~/.bash_profile
答案 0 :(得分:2)
您需要在.bashrc文件中添加命令。
.bashrc
Bash每次启动shell时都会使用此文件,那就是您定义要在会话之间保留的命令。
查看 this question on unix.se 以获得更深入的解释。