📅  最后修改于: 2023-12-03 14:57:55.035000             🧑  作者: Mango
当你启动 Bash shell 时,如果你有一个 ~/.bashrc
文件,Bash 会自动读取并执行该文件。该文件通常用于设置用户的环境变量和定义别名以及 Bash 函数等Shell选项。如果你对 Bash 熟悉,那么你可能已经对 ~/.bashrc
非常熟悉了,它就像 Bash shell 的初始装载器。但是如何运行一个 Bash 文件并确保它会在 Bash shell 启动时自动运行呢?
在终端中输入:
$ bash <filename>.sh
授予脚本执行权限
$ chmod +x <filename>.sh
$ ./<filename>.sh
在你的 Bash 系统环境中查找 .bash_profile
或 .bash_login
或 .profile
文件,如果不存在则创建一个新文件,示例如下:
$ touch .bash_profile
将以下代码添加到 .bash_profile
文件中并保存:
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
该代码段将检查你的 Bash 系统环境中是否存在 ~/.bashrc
文件,如果存在则加载它。
以上就是运行 app bashrc
所需的一切。运行 Bash 脚本可以让你轻松地执行 Bash 命令,而在 Bash shell 启动时运行 bashrc
文件可以让你自动设置环境变量和命令别名,以及定义其他 Bash 函数等常用选项。现在你已经知道如何在 Bash 中运行 Bash 脚本和如何在 Bash shell 启动时运行 bashrc
文件,你可以更好地管理和控制你的 Bash 环境。