socket: Allow keeping a reference on the new socket in sonewconn_faddr
[dragonfly.git] / usr.bin / split / split.1
1 .\" Copyright (c) 1990, 1991, 1993, 1994
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)split.1     8.3 (Berkeley) 4/16/94
29 .\" $FreeBSD: src/usr.bin/split/split.1,v 1.3.2.6 2003/04/21 21:16:25 andreas Exp $
30 .\"
31 .Dd May 25, 2013
32 .Dt SPLIT 1
33 .Os
34 .Sh NAME
35 .Nm split
36 .Nd split a file into pieces
37 .Sh SYNOPSIS
38 .Nm
39 .Fl d
40 .Op Fl a Ar suffix_length
41 .Op Fl b Ar byte_count[suffix]
42 .Op Fl l Ar line_count
43 .Op Fl p Ar pattern
44 .Op Ar file Op Ar name
45 .Sh DESCRIPTION
46 The
47 .Nm
48 utility reads the given
49 .Ar file
50 and breaks it up into files of 1000 lines each.
51 If
52 .Ar file
53 is a single dash
54 .Pq Sq Fl
55 or absent,
56 .Nm
57 reads from the standard input.
58 .Pp
59 The options are as follows:
60 .Bl -tag -width Ds
61 .It Fl a Ar suffix_length
62 Use
63 .Ar suffix_length
64 letters to form the suffix of the file name.
65 .It Fl b Ar byte_count[suffix]
66 Create smaller files
67 .Ar byte_count
68 bytes in length.
69 An optional suffix (as documented in
70 .Xr dehumanize_number 3 )
71 is supported.
72 .It Fl d
73 Use a numeric suffix instead of a alphabetic suffix.
74 .It Fl l Ar line_count
75 Create smaller files
76 .Ar n
77 lines in length.
78 .It Fl p Ar pattern
79 The file is split whenever an input line matches
80 .Ar pattern ,
81 which is interpreted as an extended regular expression.
82 The matching line will be the first line of the next output file.
83 This option is incompatible with the
84 .Fl b
85 and
86 .Fl l
87 options.
88 .El
89 .Pp
90 If additional arguments are specified, the first is used as the name
91 of the input file which is to be split.
92 If a second additional argument is specified, it is used as a prefix
93 for the names of the files into which the file is split.
94 In this case, each file into which the file is split is named by the
95 prefix followed by a lexically ordered suffix using
96 .Ar suffix_length
97 characters in the range
98 .Dq Li a-z .
99 If
100 .Fl a
101 is not specified, two letters are used as the suffix.
102 .Pp
103 If the
104 .Ar name
105 argument is not specified, the file is split into lexically ordered
106 files named with prefix
107 .Dq Li x
108 and with suffixes as above.
109 .Sh SEE ALSO
110 .Xr re_format 7
111 .Sh STANDARDS
112 The
113 .Nm
114 utility conforms to
115 .St -p1003.1-2001 .
116 .Sh HISTORY
117 A
118 .Nm
119 command appeared in
120 .At v3 .
121 .Sh BUGS
122 The maximum line length for matching patterns is 65536.