mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
16 lines
244 B
Bash
16 lines
244 B
Bash
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
docs_try() {
|
|
local CMD=$1
|
|
shift
|
|
|
|
if type -P "$CMD" > /dev/null 2>&1; then
|
|
exec "$CMD" "$NF_DOCS_PATH/index.html" "$@"
|
|
fi
|
|
}
|
|
|
|
docs_try xdg-open "$@"
|
|
docs_try open "$@"
|
|
docs_try firefox "$@"
|
|
docs_try chrome "$@"
|