我在 RHEL7 中创建了一个新用户
useradd newuser
当我打开这个用户的 ~/.bash_profile 时,输出是
$cat -n ~/.bash_profile
1 # .bash_profile
2
3 # Get the aliases and functions
4 if [ -f ~/.bashrc ]; then
5 . ~/.bashrc
6 fi
7
8 # User specific environment and startup programs
9
10 PATH=$PATH:$HOME/.local/bin:$HOME/bin
11
12 export PATH
$
从哪里bash_profile
继承到新添加的用户?如果我需要为$PATH
使用useradd
. 我怎样才能做到这一点 ?