Files
omarchy/bin/omarchy-cmd-present
2025-08-31 09:18:06 +02:00

8 lines
92 B
Bash
Executable File

#!/bin/bash
for cmd in "$@"; do
command -v "$cmd" &>/dev/null || return 1
done
return 0