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