rpflag - 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
---
rpflag (221B)
---
1 #!/bin/sh
2
3 TMPL="$(rppath -b)/tmpl/flag.sh"
4
5 if [ -t 1 -a -x "$TMPL" ];
6 then
7 if [ -n "$PAGER" ];
8 then
9 rohrpost rpflag "$@" | $TMPL | eval $PAGER
10 else
11 rohrpost rpflag "$@" | $TMPL
12 fi
13 else
14 rohrpost rpflag "$@"
15 fi
16