Files
omarchy/bin/omarchy-cmd-missing
2025-08-31 09:21:02 +02:00

10 lines
105 B
Bash
Executable File

#!/bin/bash
for cmd in "$@"; do
if ! command -v "$cmd" &>/dev/null; then
exit 0
fi
done
exit 1