Files
blomarchy/bin/blob-cmd-present
T

10 lines
154 B
Bash
Executable File

#!/bin/bash
# blob:summary=Check whether all required commands are available
for cmd in "$@"; do
command -v "$cmd" &>/dev/null || exit 1
done
exit 0