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.
|
feedback
|
|
Yes; avoid Why care?
So, don't use
If your hash bang is If your script uses | |||||||||||||||||
feedback
|
|
I agree with lhunath to discourage use of
Command Note: | |||||||
feedback
|
|
It depends whether you want to know whether it exists in one of the directories in the
otherwise use
The redirection to | |||||
feedback
|
|
I have a function defined in my .bashrc that makes this easier.
Here's an example of how it's used (from my
| |||
|
feedback
|
|
To use
This script runs
| ||||
|
feedback
|
|
To mimic Bash's
| |||
|
feedback
|
|
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... | |||||||
feedback
|
|
Try using:
or
From the bash manpage under "Conditional Expressions":
| |||||
feedback
|
|
Why not use Bash builtins if you can? which programname ... type -P programname | |||
|
feedback
|
|
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 [ | |||
|
feedback
|
|
For those interested, none of the methodologies above work if you wish to detect an installed library. I imagine you are left either with physically checking the path (potentially for header files and such), or something like this (if you are on a Debian-based distro):
As you can see from the above, a "0" answer from the query means the package is not installed. This is a function of "grep" - a "0" means a match was found, a "1" means no match was found. | |||
feedback
|
|
I had no success with this solution, I had to modify it a little:
| |||
|
feedback
|
|
I had to check if
Hope this help someone else! | |||||
feedback
|
|
The hash-variant has one pitfall: On the command line you can for example type in
to have process executed. For this the parent folder of one_folder must be in $PATH. But when you try to hash this command, it will always succeed:
| |||
|
feedback
|
| |||
|
feedback
|