在 .profile 中包含导出不会在登录后更新路径

在 .profile 中包含导出不会在登录后更新路径

我使用 i3-wm 安装了 Kali Linux v2020.4,并已更新.profile[以下]以包含导出的PATH,因为我认为更新.profile会影响所有 shell(sh、Bash、Zsh 等)。

注销/登录后,我无法运行其中存在的脚本Desktop,但如果我运行source ~/.profile,那么我就可以执行它:

export PATH="$HOME/Desktop:$PATH"

# if running bash
if [ -n "$BASH_VERSION" ]; then
  # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
      . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
  PATH="$HOME/bin:$PATH"
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
  PATH="$HOME/.local/bin:$PATH"
fi
  • 这对我来说是一种奇怪的行为,并且只在使用 Kali 时发生过;我没有~/bash_profile,也不想将它包含在内~/.bashrc,因为我希望它可用于所有 shell

相关内容