Users browsing this thread: 1 Guest(s)
venam
Administrators
Hello fellow nixers,
This thread is about this:
Code:
~ > which which
which: shell built-in command
~ > type -a which  
which is a shell builtin
which is /usr/bin/which
~ > type -a type
type is a shell builtin
~ > type -a whereis
whereis is /usr/bin/whereis
~ > which cat
/usr/bin/cat
~ > type -a cat
cat is /usr/bin/cat
~ > whereis cat
cat: /usr/bin/cat /usr/share/man/man1/cat.1.gz /usr/share/man/man1/cat.1p.gz

Let's list all possible ways to find out where a program is, be it built in or not, POSIX or not.


Messages In This Thread
Where is what - by venam - 05-06-2017, 11:19 AM
RE: Where is what - by evbo - 05-06-2017, 12:20 PM
RE: Where is what - by xero - 05-06-2017, 12:58 PM
RE: Where is what - by alxndr - 05-06-2017, 03:13 PM
RE: Where is what - by yossarian - 05-06-2017, 10:02 PM
RE: Where is what - by venam - 06-06-2017, 01:13 PM
RE: Where is what - by jkl - 06-06-2017, 01:17 PM
RE: Where is what - by venam - 06-06-2017, 01:26 PM
RE: Where is what - by venam - 23-11-2021, 01:45 PM
RE: Where is what - by neeasade - 29-11-2021, 02:03 PM
RE: Where is what - by z3bra - 29-11-2021, 07:50 PM
RE: Where is what - by neeasade - 30-11-2021, 02:26 AM