add dir to path linux 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 a directory to path in linux

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

Example 3: add directory to path on linux

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

Example 4: how to add a directory to path in linux

nano ~/.bashrc