mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-02 04:37:49 +02:00
10 lines
157 B
Bash
Executable File
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
|