默认.bashrc怎么设置
时间: 2023-10-25 22:25:46 浏览: 78
dev_machine_settings:来自我的 .bashrc 和 .vimrc 等的设置
默认情况下,每次打开一个新的终端会话时,Bash shell 会自动执行 `~/.bashrc` 文件中的命令。因此,如果你想要设置一些默认的环境变量、别名、函数等,可以在这个文件中添加相应的命令。
下面是一个简单的示例,演示如何在 `~/.bashrc` 文件中设置别名:
```bash
# 设置别名,让 ls 命令默认带上 --color 参数
alias ls='ls --color=auto'
```
当你在终端中执行 `ls` 命令时,实际上会执行的是 `ls --color=auto`。
当你编辑完 `~/.bashrc` 文件后,可以执行以下命令使其生效:
```bash
source ~/.bashrc
```
这会让 Bash shell 重新读取 `~/.bashrc` 文件中的命令。如果你想让所有终端会话都能够生效,可以在 `~/.bash_profile` 文件中添加以下命令:
```bash
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
```
这样,每次打开一个新的终端会话时,都会先执行 `~/.bash_profile` 文件,进而执行 `~/.bashrc` 文件中的命令。
阅读全文