plan9port/bin/wmail
2004-08-22 15:38:10 +00:00

11 lines
125 B
Bash
Executable file

#!/bin/sh
case "x-$MAILER" in
x-|x-browser)
# start mail in a new window
web 'mailto://'$1
;;
*)
9term $MAILER
;;
esac