bin program access

Hello,

I was wondering if I have something in my bin dir and I want to access it from another directory to make a change how can I go about it. Thank you.

Can you please explain your question in detail?
I could not get it.. :frowning:

Sure, so I have a program in my bin directory all chem.awk, I need to be able to edit the program using vi, but I was wondering if I can edit it while in another directory.

Thanks

:confused:

do you mean

pwd
/home/your_account

your_account@host# vi /usr/bin/my_app.sh

??

the same idea but do i need to write out the entire path

$ pwd
/home/myaccount
$ ln -s /usr/bin/myprogram .
$ vi myprogram

:confused: :rolleyes:

Short answer, yes. Typing isn't really that bad :stuck_out_tongue:

Tom de

Thanks to all it worked.