chiark / gitweb /
codec/{base32,hex}.h: Include `codec.h'.
[mLib] / codec / bincode.1
1 .\" nroff
2 .TH bincode 1 "9 January 2009" "Straylight/Edgeware" "mLib utilities library"
3 .SH NAME
4 bincode \- binary-to-text encoding and decoding
5 .SH SYNOPSIS
6 .B bincode
7 .RB [ \-de]
8 .RB [ \-f
9 .IR flags ]
10 .RB [ \-i
11 .IR indent ]
12 .RB [ \-m
13 .IR maxline ]
14 .RB [ \-o
15 .IR output ]
16 .RI [ file ...]
17 .SH DESCRIPTION
18 The
19 .B bincode
20 program encodes binary data as plain text (suitable, for example, for
21 use in email), and recovers binary data from its encoding.
22 .PP
23 The options are as follows.
24 .TP
25 .B "\-h, \-\-help"
26 Print a help message to standard output and exit successfully.
27 .TP
28 .B "\-v, \-\-version"
29 Print the program's version number to standard output and exit
30 successfully.
31 .TP
32 .B "\-u, \-\-usage"
33 Print a one-line usage summary to standard output and exit successfully.
34 .TP
35 .BI "\-d, \-\-decode"
36 Read encoded data and write the result of decoding it.
37 .TP
38 .BI "\-e, \-\-encode"
39 Read raw binary data and write the result of encoding.
40 .TP
41 .BI "\-f, \-\-flags=" flags
42 Set encoding/decoding flags.  The
43 .I flags
44 are a list of comma-separated flag names, each preceded by an optional
45 .RB ` + '
46 to set the flag (the default) or
47 .RB ` \- '
48 to clear it.  The flag names are as listed in
49 .BR codec (3),
50 but in lower case, and without the
51 .RB ` CDCF_ '
52 prefix; e.g.,
53 .B CDCF_IGNNEWL
54 may be specified as
55 .RB ` ignnewl '.
56 This option may be repeated: the options are scanned left-to-right.  The
57 only flag set by default is
58 .RB ` ignnewl '.
59 .TP
60 .BI "\-i, \-\-indent=" indent
61 Insert the
62 .I indent
63 string before each line.  The string may contain simple
64 backslash-escapes:
65 .RB ` \ea ',
66 .RB ` \eb ',
67 .RB ` \ef ',
68 .RB ` \en ',
69 .RB ` \er ',
70 .RB ` \et ', and
71 .RB ` \ev '
72 respectively stand for alert, backspace, form-feed, newline, carriage
73 return, and horizontal and vertical tab.  A backslash preceding any
74 other character yields that character; hence, to include a backslash,
75 write a double backslash.  The default is the empty string: i.e., just
76 end each line with a newline character.
77 .TP
78 .BI "\-m, \-\-maxline=" maxline
79 Set the maximum output line length to
80 .I maxline
81 when encoding.  The limit is ignored when decoding.  If
82 .I maxline
83 is zero, then no line splitting is performed.
84 .TP
85 .BI "\-o, \-\-output=" output
86 Write the (encoded or decoded) output to
87 .IR output .
88 The default is to write to standard output.  On platforms where it makes
89 a difference, the output file is opened in text mode when encoding, and
90 in binary mode when decoding.
91 .PP
92 The input to be encoded or decoded is the concatenation of the specified
93 .IR file s.
94 If no files are listed, then standard input is read.  A
95 .I file
96 which is a single
97 .RB ` \- '
98 also means to read standard input.  On systems where it makes a
99 difference, named files are read in binary mode when encoding and in
100 text mode when decoding.
101 .PP
102 If an error is encountered, the output may be partially written.
103 .SH "SEE ALSO"
104 .BR codec (3).
105 .SH "AUTHOR"
106 Mark Wooding, <mdw@distorted.org.uk>
107