Bash -Überprüfung, ob der Befehl verfügbar ist
if ! <command> &> /dev/null
then
echo "<command> not found"
exit
fi
Wizard Nook
if ! <command> &> /dev/null
then
echo "<command> not found"
exit
fi