can anyone help me with this ? I've got a perl script in one directory, and I want to be able to access it while working in other directories. Now, I don't have the permissions necessary to put it in the usr/bin directory. I've created a .tcshrc file in my home directory, with
set path = ($path /home/Programs)
(where the program is located), but it doesn't have any effect. When I try "./Program.pl" (name of program) while in another directory, I get "bash: ./Program.pl: No such file or directory".
any advice would be greatly appreciated.