adding to path on linux code example
Example 1: linux add to path
export PATH=$PATH:/place/with/the/file
Example 2: ubuntu export path
export PATH="/path/to/dir:$PATH"
export PATH=$PATH:/place/with/the/file
export PATH="/path/to/dir:$PATH"