how to add directory to path on mac 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: adding this directory to PATH mac

sudo nano /etc/paths

https://www.architectryan.com/2012/10/02/add-to-the-path-on-mac-os-x-mountain-lion/