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 43 44 45 46 47 48 49
|
=encoding UTF-8
=head1 NAME
ascii85 - encodes or decodes files using Ascii85 ruby library
=head1 SYNOPSIS
B<ascii85> [I<OPTIONS>] I<FILES>
=head1 DESCRIPTION
Ascii85 (also called "Base85") is a form of binary-to-text encoding, which is
mainly used in Adobe's PostScript and PDF format.
B<ascii85> is a command line utility, modeled after base64(1) from the GNU
coreutils, can encode text files to Ascii85 or decode Ascii85 files to text,
and then print the result to the standard output.
If no file is given on the command line, B<ascii85> reads from the standard input.
=head1 OPTIONS
=over
=item B<-w>, B<--wrap> COLUMN
Wrap lines at COLUMN. Default is 80, use 0 for no wrapping
=item B<-d>, B<--decode>
Decode the input
=item B<-h>, B<--help>
Display a usage message and exit
=item B<--version>
Output version information
=back
=head1 AUTHORS
B<ascii85> has been developed by Johannes Holzfuß.
This manual page has been written for the Debian Project by Cédric Boutillier (but
may used by others).
|