En mi ~/.profile
tengo un último bloque que debería cargar mi personal bin/ directory
así:
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
Pero aparentemente no está cargado:
echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
¿Por qué esto no funciona? (Mi caparazón es bash)
Editar para 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
bandera pasada a bash y ver dónde se restablece la RUTA. Además, debe export PATH="$HOME/bin:$PATH"
proporcionarlo a los procesos posteriores.
.profile
, consulte askubuntu.com/questions/284640 .