mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
10 lines
105 B
Bash
Executable File
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
|