1ASCII85(1) ASCII85(1)
2
3
4
6 ascii85 - encodes or decodes files using Ascii85 ruby library
7
9 ascii85 [OPTIONS] FILES
10
12 Ascii85 (also called "Base85") is a form of binary-to-text encoding,
13 wich is mainly used in Adobe's PostScript and PDF format.
14
15 ascii85 is a command line utility, modeled after base64(1) from the GNU
16 coreutils, can encode text files to Ascii85 or decode Ascii85 files to
17 text, and then print the result to the standard output.
18
19 If no file is given on the command line, ascii85 reads from the
20 standard input.
21
23 -w, --wrap COLUMN
24 Wrap lines at COLUMN. Default is 80, use 0 for no wrapping
25
26 -d, --decode
27 Decode the input
28
29 -h, --help
30 Display a usage message and exit
31
32 --version
33 Output version information
34
36 ascii85 has been developed by Johannes Holzfuß.
37
38 This manual page has been written for the Debian Project by Cédric
39 Boutillier (but may used by others).
40
41
42
43 2019-07-26 ASCII85(1)