Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了文件$HOME/.bashrc(因为它不存在),添加了一些命令,但它没有运行,这不是我在那里进行的所有设置。 如果您只是在控制台中键入这些命令,它就可以工作。
$HOME/.bashrc
(托管不是我的)
.bashrc问题是,如果将 bash 作为登录 shell调用,它将无法读取。(有时有一个系统范围的解决方法可以隐藏这种差异)。
.bashrc
在中添加以下命令$HOME/.bash_profile:
$HOME/.bash_profile
. "$HOME/.bashrc"
属于超级用户,但因为这是一件相当容易的事情:
BASH 配置文件在创建/修改时不会自动加载 - 您必须重新打开 BASH 会话才能加载它们,或者source ~/.bashrc手动运行以加载内容。
source ~/.bashrc