Tar compiles on BSD, thanks Roberto E. Vargas Caballero. Also remove tons of trailing whitespace.

This commit is contained in:
David Galos
2013-07-20 01:27:42 -04:00
parent 43c4213631
commit 9f8deb4b23
25 changed files with 78 additions and 85 deletions

20
split.1
View File

@@ -4,18 +4,18 @@ split \- split up a file
.SH SYNOPSIS
.B split
.RB [ \-d ]
.RB [ \-a
.RB [ \-a
.IR len ]
.RB [ \-b
.RB [ \-b
.RI [ bytes [k|m|g]]]
.RB [ \-l
.RB [ \-l
.RI [ lines ]]
.RI [ input
.RI [ input
.RI [ prefix ]]
.SH DESCRIPTION
.B split
Reads a file, splitting it into smaller files, every
Reads a file, splitting it into smaller files, every
.IR bytes
bytes
or
@@ -23,9 +23,9 @@ or
lines. If
.B split
runs out of filenames before all the data can be written, it stops at the
last valid filename, leaving all the written data on the disk.
last valid filename, leaving all the written data on the disk.
The
The
.IR b
and
.IR l
@@ -38,19 +38,19 @@ Use decimal suffixes rather than alphabetical.
.TP
.B \-a "len"
Set the suffix length to
Set the suffix length to
.IR len
characters long.
.TP
.B \-b [bytes[k|m|g]]
Start a new file every
Start a new file every
.IR bytes
bytes. The units k, m, and g are case insensitive, and powers of 2, not 10.
.TP
.B \-l [lines]
Start a new file every
Start a new file every
.IR lines
lines.