Deleted Added
full compact
32a33
> .\" $Id$
45a47
> .Op Fl cp
78a81,92
> .Pp
> The following options are available for
> .Nm uudecode :
> .Bl -tag -width ident
> .It Fl c
> Decode more than one uuencode'd file from
> .Ar file
> if possible.
> .It Fl p
> Decode
> .Ar file
> and write output to standard output.
91a106,119
>
> The following example unpack all uuencode'd
> files from your mailbox into your current working directory.
> .Pp
> .Bd -literal -offset indent -compact
> uudecode -c < $MAIL
> .Ed
>
> The following example extract a compress'ed tar
> archive from your mailbox
> .Pp
> .Bd -literal -offset indent -compact
> uudecode -p < $MAIL | zcat | tar xfv -
> .Ed