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

rpprint (173B)


      1 #!/bin/sh
      2 
      3 TMPL="$(rppath -b)/tmpl/print.sh"
      4 
      5 if [ -t 1 -a -x "$TMPL" ];
      6 then
      7 	rohrpost rpview "$@" | $TMPL
      8 else
      9 	# skip appeneded ^L
     10 	rohrpost rpview "$@" | head -n -1
     11 fi
     12