rpmailcomposer - rohrpost - A commandline mail client to change the world as we see it.
 (HTM) git clone git://r-36.net/rohrpost
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) 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