BASH Vérifier si la commande est disponible
if ! <command> &> /dev/null
then
echo "<command> not found"
exit
fi
Wizard Nook
if ! <command> &> /dev/null
then
echo "<command> not found"
exit
fi