1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
.\" $Id: header.1,v 1.1 1999/12/02 03:53:45 chip Exp $
.\"
.\" Man page for header.
.\"
.TH HEADER 1 "header"
.SH NAME
header \- extract fields from mail header
.SH SYNOPSIS
.B header
[-c] [-n] [-v] [-f fieldname] ...
.SH DESCRIPTION
The
.I header
program reads a mail header on its standard input. Any text that
follows the header is ignored. It then prints all, part, or none of
the header to its standard output, depending on its command line
options.
.SH OPTIONS
.TP
.B \-c
Match field names only if their cases match. Normally, mail header
field names are case-insensitive.
.TP
.B \-n
Prefix displayed header fields with their names. The resulting output
is itself a valid header (albeit possibly shorter). By default, only
field values are displayed.
.TP
.B \-v
Print only the fields that are \fInot\fR listed in
.B \-f
options.
.TP
.B \-f fieldname
Display (or delete, if \fB-v\fR) header fields with the given name.
.SH SUPPORT
Please mail enhancements, enhancement requests, trouble reports, etc.
to <chip@pobox.com>. See also the Debian GNU/Linux bug tracking system
at http://www.debian.org/Bugs/.
.SH "SEE ALSO"
.IR deliver (8)
|