Variable $PATH
El PATH se encuentra en .bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi# User specific environment and startup programs
PATH=$PATH:$HOME/bin:/usr/java/jre1.5.0_07/bin/
export PATH
unset USERNAME
Para aplicar la configuración de path en caso de cambiar las variables se carga con el comando:
#source .bash_profile
Para mostrar los cambios utilizar echo $PATH
cat .bashrc
# .bashrc
# User specific aliases and functions
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi