dj.1: last minute changes

This commit is contained in:
dtb 2024-06-29 19:14:08 -06:00
parent 3b5ddede98
commit 6b28a12b73
Signed by: trinity
GPG Key ID: 34C0543BBB6AF81B

View File

@ -53,9 +53,9 @@ Takes a file path as an argument and opens it for use as an input.
Takes a numeric argument as the size in bytes of the input buffer, the default Takes a numeric argument as the size in bytes of the input buffer, the default
being 1024. being 1024.
.IP \fB-s\fP .IP \fB-s\fP
Takes a numeric argument as the number of bytes to skip into the input Takes a numeric argument as the index of the byte at which reading will
before starting to read. If the standard input is used, bytes read to this point commence; \(lqskips\(rq that number of bytes. If the standard input is used,
are discarded. bytes read to this point are discarded.
.IP \fB-o\fP .IP \fB-o\fP
Takes a file path as an argument and opens it for use as an output. Takes a file path as an argument and opens it for use as an output.
.IP \fB-B\fP .IP \fB-B\fP
@ -63,8 +63,9 @@ Does the same as
.B -b .B -b
but for the output buffer. but for the output buffer.
.IP \fB-S\fP .IP \fB-S\fP
Seeks a number of bytes through the output before starting to write from Takes a numeric argument as the index of the byte at which writing will
the input. If the output is a stream, null characters are printed. commence; \(lqseeks\(rq that number of bytes. If the standard output is used,
null characters are printed.
.IP \fB-a\fP .IP \fB-a\fP
Accepts a single literal byte with which the input buffer is padded in the event Accepts a single literal byte with which the input buffer is padded in the event
of an incomplete read from the input file. If the option argument is empty, the of an incomplete read from the input file. If the option argument is empty, the
@ -81,11 +82,11 @@ Retries failed reads once before exiting.
.SH STANDARD INPUT .SH STANDARD INPUT
The standard input shall be used as an input if no inputs are specified or if The standard input shall be used as an input if no inputs are specified or if
one or more of the input files is \(lq-\(rq. input file is \(lq-\(rq.
.\" .\"
.SH STANDARD OUTPUT .SH STANDARD OUTPUT
The standard output shall be used as an output if no inputs are specified or if The standard output shall be used as an output if no inputs are specified or if
one or more of the input files is \(lq-\(rq. the output file is \(lq-\(rq.
.\" .\"
.SH DIAGNOSTICS .SH DIAGNOSTICS
@ -129,9 +130,7 @@ is specified along with the
option and a count, actual byte output is the product of the count and the input option and a count, actual byte output is the product of the count and the input
block size and therefore may be lower than expected. If the block size and therefore may be lower than expected. If the
.B -a .B -a
or option is specified, this could make written data nonsensical.
.B -A
options are specified, this could make written data nonsensical.
.\" .\"
.SH CAVEATS .SH CAVEATS