lunes, 3 de mayo de 2021

Ubuntu establecer la variable PATH definitivamente

 Según HackProgramming se puede hacer modificando el fichero ~/.profile

Se le puede añadir esto al fichero (se le añade al path la carpeta MyShells al PATH)


# set PATH so it includes user's private MyShells if it exists

if [ -d "$HOME/MyShells" ] ; then

    PATH="$HOME/MyShells:$PATH"

fi


y ahora le damos este comando para que recoja el nuevo PATH

source ~/.profile

Y ya podemos ver esta carpeta en el path haciendo

echo $PATH




No hay comentarios :

Publicar un comentario