how to include a directory in the PATH on ubuntu 16.04 code example
Example 1: ubuntu export path
export PATH="/path/to/dir:$PATH"
Example 2: ubuntu export path
$ source ~/.bashrc
export PATH="/path/to/dir:$PATH"
$ source ~/.bashrc