Files
arthur-os/bin/omarchy-cmd-missing
2026-04-28 12:03:46 -04:00

12 lines
172 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Check whether any required commands are missing
for cmd in "$@"; do
if ! command -v "$cmd" &>/dev/null; then
exit 0
fi
done
exit 1