How to add more paths

to my env variable?

I also have an application installed under /usr/share/myapp
How to make a link to the application installed under myapp in to a directory that is already in my env variable?

Hi,

Add to $PATH with

export PATH="/*new path*":$PATH

Make it permanent by adding the line of code to your bashrc file.

Regards,
Barry

ln -s /usr/share/myapp ~/bin

Rob