Answers for "how to add path in ubuntu"

1

how to add path in ubuntu

# Edit .bashrc, or .zshrc in your home directory and add the following line:

export PATH="/path/to/dir:$PATH"

$ source ~/.bashrc
source ~/.zshrc
Posted by: Guest on January-07-2021
1

how to add a directory to path in linux

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

ubuntu export path

export PATH="/path/to/dir:$PATH"
Posted by: Guest on August-28-2020
-1

ubuntu export path

$ source ~/.bashrc
Posted by: Guest on August-28-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language