Trong tôi ~/.profile
có một khối cuối cùng sẽ tải cá nhân của tôi bin/ directory
như thế này:
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
Nhưng nó dường như không được tải:
echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
Tại sao cái này không hoạt động? (Vỏ của tôi là bash.)
Chỉnh sửa cho Tigger
echo $0 => bash
echo $HOME => /home/student
whoami => student
less /etc/*-release =>
PRETTY_NAME="Debian GNU/Linux 9 (stretch)"
NAME="Debian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
-x
cờ được chuyển đến bash và xem nơi PATH được đặt lại. Ngoài ra, bạn cần export PATH="$HOME/bin:$PATH"
cung cấp nó cho các quá trình tiếp theo.
.profile
, hãy xem Askubfox.com/questions/284640 .