ubuntu add directory to path code example

Example 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

Example 2: 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

Example 3: how to add a directory to path

export PATH="$HOME/bin:$PATH"

Example 4: ubuntu export path

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

Example 5: ubuntu export path

$ source ~/.bashrc

Tags:

Java Example