plan9port/bin/wmail
2006-02-20 00:08:46 +00:00

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