On Unix I can call certain programs from everywhere, like sort, pwd or my_custom_script.sh.

How can I find out, where on the system my_custom_script.sh really resides?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I would recommend using type command. which command only look in the PATH so can be misleading for builtins (like pwd), functions and aliases.

link|improve this answer
which actually also lists aliases. – Daniel Beck May 20 '11 at 10:40
1  
I'm afraid it can't. which isn't a shell builtin so has no idea about internal commands/aliases and the like. – jlliagre May 20 '11 at 11:38
On my Linux box, "which" is unexpectedly aliased. Sorry about that. – Daniel Beck May 20 '11 at 12:38
feedback

Use which

which sort

Gives you (for example):

/usr/bin/sort

This also helps you to troubleshoot issues with your PATH, e.g. if you have several versions of the same binary installed and you don't know which one is called.

So if you have multiple versions, you can use the -a switch:

charon:~ werner$ which -a ruby
/Users/werner/.rvm/rubies/ruby-1.9.2-head/bin/ruby
/Users/werner/.rvm/bin/ruby
/usr/bin/ruby
link|improve this answer
1  
which will work for my_custom_script.sh but will give misleading information about pwd and similar commands. – jlliagre May 20 '11 at 11:53
feedback

Your Answer

 
or
required, but never shown

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