16.10 findcmd: Find a Command in Your Search PathUNIX has utilities like whereis ( 50.5 ) and which ( 50.8 ) to look for a command on the system. But whereis doesn't look in your shell's search path, so it may not find shell scripts in local system directories or your bin directory ( 4.2 ) . And to use which , you have to know the exact name of the command, because which only shows the first command with that name in your path. If you're like me, you can't always remember the name of the command you're looking for. "Wasn't it called reference or refer or something like that?" The findcmd script saves me a lot of guessing. It shows all command names, in all directories in my search path, that contain some string. So, I'll look for command names that have "ref" in them:
%
First, the script edits a copy of your
PATH
(
6.4
)
to change any current directory entry to a dot ( - |
|