rohrpost

A commandline mail client to change the world as we see it.
git clone git://r-36.net/rohrpost
Log | Files | Refs | README | LICENSE

rpmailcomposer (195B)


      1 #!/bin/sh
      2 
      3 if [ $# -lt 1 ];
      4 then
      5 	printf "usage: %s address\n" "$(basename "$0")" >&2
      6 	exit 1
      7 fi
      8 
      9 rpcomp "$1"
     10 PAGER= rpdrafts -l
     11 [ -z "$SHELL" ] && export SHELL="/bin/sh"
     12 PS1='compose> ' $SHELL
     13