每次启动新 shell,bash shell 都会运行.bashrc 文件。①对此进行验证,可以使用这种方法:在
主目录下的.bashrc 文件中加入一条简单的 echo 语句,然后启动一个新 shell。文章来源:https://www.toymoban.com/news/detail-745295.html
$ cat $HOME/.bashrc
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
export PATH
# Uncomment the following line if you don't like systemctl's autopaging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
echo "I'm in a new shell!"
$
$ bash
I'm' in a new shell!
$
$ exit
exit
$
.bashrc 文件通常也借由某个 bash 启动文件来运行,因为.bashrc 文件会运行两次:一次是当
用户登录 bash shell 时,另一次是当用户启动 bash shell 时。如果需要某个脚本在两个时刻都运行,
可以将其放入该文件中。文章来源地址https://www.toymoban.com/news/detail-745295.html
到了这里,关于shell_73.Linux使用新 shell 启动脚本的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!