diff options
-rwxr-xr-x | bin/web | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -2,7 +2,14 @@ plumbapple() { - open "$@" + case ${BROWSER:-none} in + none) + open "$@" + ;; + *) + open -a "$BROWSER" "$@" + ;; + esac } plumbunix() |
index : plan9port.git | |
This is a port of many Plan 9 libraries and programs to Unix. [forked] | nobody |
aboutsummaryrefslogtreecommitdiff |
-rwxr-xr-x | bin/web | 9 |
@@ -2,7 +2,14 @@ plumbapple() { - open "$@" + case ${BROWSER:-none} in + none) + open "$@" + ;; + *) + open -a "$BROWSER" "$@" + ;; + esac } plumbunix() |