Add Fold To Path In Linux

[Solved] Add Fold To Path In Linux | Perl - Code Explorer | yomemimo.com
Question : add fold to path in linux

Answered by : glamorous-gnat-ntlzpja55ut1

#Temporary solution
echo $PATH
export PATH="$HOME/bin:$PATH"
#Permanent solution
nano ~/.bashrc
export PATH="$HOME/bin:$PATH"
source ~/.bashrc
echo $PATH

Source : https://linuxize.com/post/how-to-add-directory-to-path-in-linux/ | Last Update : Fri, 17 Sep 21

Answers related to add fold to path in linux

Code Explorer Popular Question For Perl