Answers for "bash check if command is available"

0

bash check if command is available

if ! <command> &> /dev/null
then
    echo "<command> not found"
    exit
fi
Posted by: Guest on February-21-2022

Code answers related to "bash check if command is available"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language