mirror of
https://github.com/celesrenata/end-4-flakes.git
synced 2026-06-05 18:29:26 -05:00
9 lines
193 B
Bash
9 lines
193 B
Bash
#!/usr/bin/env bash
|
|
# Launch the first available application from a list
|
|
for cmd in "$@"; do
|
|
eval "command -v ${cmd%% *}" >/dev/null 2>&1 || continue
|
|
eval "$cmd" &
|
|
exit
|
|
done
|
|
exit 1
|