Greetings,
When I open a terminal and enter :"echo $PATH", I receive this printout:
I successfully add :
But when I close the terminal, and later reopen and check the path, the addition has disappeared. The path is back to the original path, sans the "/home/james".
What way exists to save the change permanently?
When I open a terminal and enter :"echo $PATH", I receive this printout:
james@james-desktop:~$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
PATH=$PATH:/home/james
james@james-desktop:~$ PATH=$PATH/home/james
james@james-desktop:~$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games/home/james
james@james-desktop:~$ echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games/home/james
What way exists to save the change permanently?
Comment