Answers for "how to add a directory to path in linux"

13

linux add to path

export PATH=$PATH:/place/with/the/file
Posted by: Guest on June-11-2020
1

how to add a directory in path linux

# For this Purpose you have to edit ~/.bashrc file.
# So in terminal:
nano ~/.bashrc
# Now add this command to the file and instead of ADDRESS,
# write your desired address
export PATH=$PATH:ADDRESS
# Like:
export PATH=$PATH:/usr/local/hadoop
Posted by: Guest on December-19-2020
1

how to add a directory to path in linux

export PATH="$HOME/bin:$PATH"
Posted by: Guest on July-22-2020
0

add directory to path on linux

export PATH="$HOME/bin:$PATH"Copied!
Posted by: Guest on May-26-2021
-1

how to add a directory to path in linux

nano ~/.bashrc
Posted by: Guest on July-22-2020

Code answers related to "how to add a directory to path in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language