Answers:
该文件$HOME/.profile
被许多shell使用,包括bash,sh,dash和其他可能的shell。
从bash手册页:
当bash作为交互式登录shell调用时,...它首先从文件/ etc / profile中读取并执行命令(如果该文件存在)。读取该文件后,它将按该顺序查找〜/ .bash_profile,〜/ .bash_login和〜/ .profile,并从存在的且可读的第一个命令中读取并执行命令。
csh和tcsh明确不看,~/.profile
但是那些shell有点过时了。
Run command as a login shell
。您还需要删除~/.bash_profile
或使其成为源~/.profile
。
$HOME/.profile
从Zsh内部获取资源.zshrc
。我倾向于将所有可移植外壳程序放入其中.profile
,然后可以在可能会在其间进行跳转的任何环境中共享它。
~/.profile
是环境变量的定义和你想,当你登录到运行非图形程序的正确的地方(例如ssh-agent
,screen -m
)。如果它是Bourne风格的shell(sh,ksh,bash),则由登录shell执行。~/.zprofile
改为运行Zsh,运行Csh和tcsh ~/.login
。
如果您在X显示管理器(xdm,gdm,kdm等)下登录,是否~/.profile
运行取决于您的发行版配置显示管理器以及桌面环境的方式。如果您在“自定义会话”下登录,通常会执行~/.xsession
。
~/.bashrc
是bash特定设置(例如别名,函数,shell选项和提示)的正确位置。顾名思义,它专用于bash。csh具有~/.cshrc
,ksh具有~/.kshrc
,zsh具有<drumroll> ~/.zshrc
。
另请参见:
.bashrc和.bash_profile之间的区别
应该使用哪些安装文件来通过bash设置环境变量?
Zsh没有命中〜/ .profile
没有通用文件,但是您可以使每个外壳程序都从通用文件中读取。
bash
从.bash_profile
或读取.bashrc
zsh
从和读取.zprofile
.zshrc
ksh
从.profile
或读取$ENV
所以这是我的工作:
~/.env
# Put environment variables here, e.g.
PATH=$PATH:$HOME/bin
~/.shrc
test -f "$HOME/.env" && . "$HOME/.env"
# Put interactive shell setup here, e.g.
alias ll='ls -l'
PS1='$PWD$ '
set -o emacs
~/.bashrc
test -f ~/.shrc && source ~/.shrc
# Put any bash-specific settings here, e.g.
HISTFILE=~/.bash_history
shopt -s extglob
IGNOREEOF=yes
~/.zshenv
# Put any zsh-specific settings for non-interactive and interactive sessions, e.g.
setopt braceexpand
setopt promptsubst
setopt shwordsplit
~/.zshrc
test -f ~/.shrc && source ~/.shrc
# Put any zsh-specific interactive settings here, e.g.
HISTFILE=~/.zsh_history
setopt ignoreeof
~/.profile
# Interactive sub-shells source .env, unless this is bash or zsh,
# because they already sourced .env in .bashrc or .zshrc.
if test -z "$BASH_VERSION" -a -z "$ZSH_VERSION" || test -n "$BASH_VERSION" -a \( "${BASH##*/}" = "sh" \)
then
test -f "$HOME"/.env && . "$HOME"/.env
fi
# The name is confusing, but $ENV is ksh's config file for interactive sessions,
# so it's equivalent to .bashrc or .zshrc.
# Putting this here makes running an interactive ksh from any login shell work.
test -f "$HOME"/.shrc && export ENV="$HOME"/.shrc
# Put any login shell specific commands here, e.g.
ssh-add
stty -ixon
~/.bash_profile
source ~/.bashrc
source ~/.profile
~/.zlogin
# zsh sources .zshrc automatically, only need to source .profile
source ~/.profile
~/.zprofile
(empty)
如果您具有对系统的root访问权限,则另一种方法是设置pam_env
。
你可以放
session optional pam_env.so user_envfile=.env
在相关/etc/pam.d
文件中(例如/etc/pam.d/common-session
在Debian上),然后在用户登录时PAM
从中读取环境变量~/.env
。
请注意,pam_env
基本上仅支持VAR=value
条目。
更多信息: