I am sourcing a file under tcsh. This file could be anywhere on the filesystem. How can I retrieve the path of my sourced file ?

$0 won't work : I don't execute the file, I source it.

Many thanks !

link|improve this question
feedback

3 Answers

As far as I know sourcing means that you run it as if you were typing the commands one by one in the command line. Then, of course, you can't access its name, because he's not being executed as a script in the first place.

But you might be lucky: try to look in the command log. In bash you just type "history", dunno about tcsh but I guess there must be one there too.

link|improve this answer
feedback

While this is possible in other shells, I don't see a way to do it in tcsh.

link|improve this answer
How would you do in bash ? – Charles May 7 '10 at 10:10
As shown in my answer at the link in my answer above, ${BASH_SOURCE[0]} is the location of the sourced file. – Dennis Williamson May 7 '10 at 11:13
Ooops, sorry, didn't see the link... – Charles May 8 '10 at 10:48
feedback
up vote 0 down vote accepted

A little bit of grepping gives me what I want.

There is one thing I know for sure : the basename of the file (not the whole path). In my case, source_me.tcsh. So we can query lsof for the current shell PID and grep the absolute path.

$$ gives you the PID.

/usr/sbin/lsof +p $$ | grep -oE /.\*source_me.tcsh
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.