mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
11 lines
128 B
Bash
Executable file
11 lines
128 B
Bash
Executable file
#!/bin/sh
|
|
|
|
case "x-$MAILER" in
|
|
x-|x-browser)
|
|
# start mail in a new window
|
|
web "mailto:$1"
|
|
;;
|
|
*)
|
|
9term $MAILER "$1"
|
|
;;
|
|
esac
|