aboutsummaryrefslogtreecommitdiff
path: root/.config/shell/posix-functions/POSIX_open.sh
blob: b53e93f61bc7fa6fc93baffb48b9923519d07e48 (plain)
1
2
3
4
5
6
open() {
    command -v xdg-open > /dev/null && xdg-open "$@" && return
    [ "$(uname)" = "Darwin" ] && open "$@" && return
    [ "$(uname)" = "Haiku" ] && open "$@" && return
    echo "error: could not detect the open command for your system." && return 1
}