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

10 lines
157 B
Bash
Executable File

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