Files
Nomarchy/bin/nomarchy-cmd-missing
Bernardo Magri 33deeb494b initial commit
2026-04-01 17:06:01 +01:00

12 lines
194 B
Bash
Executable File

#!/bin/bash
# Returns true if any of the commands passed in as arguments are missing on the system.
for cmd in "$@"; do
if ! command -v "$cmd" &>/dev/null; then
exit 0
fi
done
exit 1