How would I validate that a program exists? Which would then either return an error and exit or continue with the script.
It seems like it should be easy, but it's been stumping me.
|
|
How would I validate that a program exists? Which would then either return an error and exit or continue with the script. It seems like it should be easy, but it's been stumping me.
|
||
|
|
|
|
It depends whether you want to know whether it exists in one of the directories in the
otherwise use
The redirection to |
||
|
|
|
Try using:
or
From the bash manpage under "Conditional Expressions":
|
||
|
|
The It returns 0 if the executable is found, 1 if it's not found or not executable:
Nice thing about which is that it figures out if the executable is available in the environment that which is run in - saves a few problems... -Adam |
||||
|
|
|
Why not use Bash builtins if you can? which programname ... type -P programname |
||
|
|
|
|
Yes; avoid "which". Not only is it an external process you're launching for doing very little (meaning builtins like "type" are way cheaper), you can also rely on the builtins to actually do what you want. Why care?
Don't use which. Instead use type.
|
||
|
|
|
|
I never did get the above solutions to work on the box I have access to. For one, type has been installed (doing what more does). So the builtin directive is needed. This command works for me: if [ |
||
|
|