Files
arthur-os/bin/omarchy-cmd-present
T

8 lines
92 B
Bash
Executable File

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