plan9port/bin/wmail

12 lines
128 B
Text
Raw Permalink Normal View History

2004-08-22 15:38:10 +00:00
#!/bin/sh
case "x-$MAILER" in
x-|x-browser)
# start mail in a new window
2006-02-20 00:08:46 +00:00
web "mailto:$1"
2004-08-22 15:38:10 +00:00
;;
*)
2006-02-20 00:08:46 +00:00
9term $MAILER "$1"
2004-08-22 15:38:10 +00:00
;;
esac