# Check if the given program is installed. Returns 0 if it exists, 1
# otherwise; so it can be used in if.
installed() {
- which $1 2>&1 | perl -ne 'if (not m{^/}) { exit 1 }'
+ which $1 2>&1 | perl -e '$_ = <>; if (not m{^/}) { exit 1 }'
}
# Print the current OS. The following OS are supported at the moment:
installed ls && echo ls installed
installed doesnt-exist && echo doesnt-exist installed
+# which with proper exit codes and no output in case of an error.
+which() {
+ if [ $1 = ls ]; then
+ echo /bin/ls
+ else
+ return 1
+ fi
+}
+echo different which
+installed ls && echo ls installed
+installed doesnt-exist && echo doesnt-exist installed
+
# Tests for generate().
echo "Simple test file for generate() using m4.
ls installed
stupid which
ls installed
+different which
+ls installed
m4: generating 'tmp/test' from 'tmp/test.m4' with options '-DTEST=m4'
###################################
# WARNING! DO NOT EDIT THIS FILE! #