mutt stable branch with some hacks
1.\" -*-nroff-*-
2.\"
3.\" pgpewrap, a command line munging tool
4.\" Manpage Copyright (c) 2013 Honza Horak
5.\"
6.\" This program is free software; you can redistribute it and/or modify
7.\" it under the terms of the GNU General Public License as published by
8.\" the Free Software Foundation; either version 2 of the License, or
9.\" (at your option) any later version.
10.\"
11.\" This program is distributed in the hope that it will be useful,
12.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
13.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14.\" GNU General Public License for more details.
15.\"
16.\" You should have received a copy of the GNU General Public License
17.\" along with this program; if not, write to the Free Software
18.\" Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19.\"
20.TH pgpewrap 1 "May 2013" Unix "User Manuals"
21.SH NAME
22pgpewrap \- Mutt command line munging tool
23
24.SH SYNTAX
25.PP
26\fBpgpewrap\fP [ \fBflags\fP ] \-\- \fBprefix\fP [ \fBrecipients\fP ]
27
28.SH DESCRIPTION
29.PP
30This is a little C program which does some command line munging: The
31first argument is a command to be executed. When \fBpgpewrap\fP
32encounters a "\-\-" (dash\-dash) argument, it will interpret the next
33argument as a prefix which is put in front of all following
34arguments.
35
36.SH EXAMPLE
37
38 pgpewrap pgpe file \-\- \-r a b c
39
40will execute:
41
42 pgpe file -r a -r b -r c
43
44This script is needed with PGP 5 and with GPG, since their command
45line interfaces can't be properly served by mutt's format mechanism.
46