xref: /freebsd/usr.bin/split/split.1 (revision bdcbfde31e8e9b343f113a1956384bdf30d1ed62)
19b50d902SRodney W. Grimes.\" Copyright (c) 1990, 1991, 1993, 1994
29b50d902SRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
39b50d902SRodney W. Grimes.\"
49b50d902SRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
59b50d902SRodney W. Grimes.\" modification, are permitted provided that the following conditions
69b50d902SRodney W. Grimes.\" are met:
79b50d902SRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
89b50d902SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
99b50d902SRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
109b50d902SRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
119b50d902SRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
12fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
139b50d902SRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
149b50d902SRodney W. Grimes.\"    without specific prior written permission.
159b50d902SRodney W. Grimes.\"
169b50d902SRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
179b50d902SRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
189b50d902SRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
199b50d902SRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
209b50d902SRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
219b50d902SRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
229b50d902SRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
239b50d902SRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
249b50d902SRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
259b50d902SRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
269b50d902SRodney W. Grimes.\" SUCH DAMAGE.
279b50d902SRodney W. Grimes.\"
28c4f7198fSJan Schaumann.Dd May 26, 2023
299b50d902SRodney W. Grimes.Dt SPLIT 1
309b50d902SRodney W. Grimes.Os
319b50d902SRodney W. Grimes.Sh NAME
329b50d902SRodney W. Grimes.Nm split
339b50d902SRodney W. Grimes.Nd split a file into pieces
349b50d902SRodney W. Grimes.Sh SYNOPSIS
358fe908efSRuslan Ermilov.Nm
36*ac17fc81SJan Schaumann.Op Fl cd
379b50d902SRodney W. Grimes.Op Fl l Ar line_count
3849198c42SGiorgos Keramidas.Op Fl a Ar suffix_length
3949198c42SGiorgos Keramidas.Op Ar file Op Ar prefix
4049198c42SGiorgos Keramidas.Nm
41*ac17fc81SJan Schaumann.Op Fl cd
4249198c42SGiorgos Keramidas.Fl b Ar byte_count Ns
4349198c42SGiorgos Keramidas.Oo
44cb29445aSRuslan Ermilov.Sm off
45cb29445aSRuslan Ermilov.Cm K | k | M | m | G | g
46cb29445aSRuslan Ermilov.Sm on
4749198c42SGiorgos Keramidas.Oc
4849198c42SGiorgos Keramidas.Op Fl a Ar suffix_length
4949198c42SGiorgos Keramidas.Op Ar file Op Ar prefix
5049198c42SGiorgos Keramidas.Nm
51*ac17fc81SJan Schaumann.Op Fl cd
520e286f08SDavid Schultz.Fl n Ar chunk_count
530e286f08SDavid Schultz.Op Fl a Ar suffix_length
540e286f08SDavid Schultz.Op Ar file Op Ar prefix
550e286f08SDavid Schultz.Nm
56*ac17fc81SJan Schaumann.Op Fl cd
5749198c42SGiorgos Keramidas.Fl p Ar pattern
5849198c42SGiorgos Keramidas.Op Fl a Ar suffix_length
5949198c42SGiorgos Keramidas.Op Ar file Op Ar prefix
609b50d902SRodney W. Grimes.Sh DESCRIPTION
619b50d902SRodney W. GrimesThe
628fe908efSRuslan Ermilov.Nm
639b50d902SRodney W. Grimesutility reads the given
649b50d902SRodney W. Grimes.Ar file
6549198c42SGiorgos Keramidasand breaks it up into files of 1000 lines each
6649198c42SGiorgos Keramidas(if no options are specified), leaving the
6749198c42SGiorgos Keramidas.Ar file
6849198c42SGiorgos Keramidasunchanged.
693e4228c3STim J. RobbinsIf
703e4228c3STim J. Robbins.Ar file
713e4228c3STim J. Robbinsis a single dash
72f9988a58SRuslan Ermilov.Pq Sq Fl
733e4228c3STim J. Robbinsor absent,
743e4228c3STim J. Robbins.Nm
753e4228c3STim J. Robbinsreads from the standard input.
769b50d902SRodney W. Grimes.Pp
779b50d902SRodney W. GrimesThe options are as follows:
7849198c42SGiorgos Keramidas.Bl -tag -width indent
7933eafb83STim J. Robbins.It Fl a Ar suffix_length
8041850495SMike BarcroftUse
8141850495SMike Barcroft.Ar suffix_length
8241850495SMike Barcroftletters to form the suffix of the file name.
83cb29445aSRuslan Ermilov.It Fl b Ar byte_count Ns Oo
84cb29445aSRuslan Ermilov.Sm off
85cb29445aSRuslan Ermilov.Cm K | k | M | m | G | g
86cb29445aSRuslan Ermilov.Sm on
87cb29445aSRuslan Ermilov.Oc
88cff548f0STom RhodesCreate split files
899b50d902SRodney W. Grimes.Ar byte_count
909b50d902SRodney W. Grimesbytes in length.
919b50d902SRodney W. GrimesIf
924e9e907dSRuslan Ermilov.Cm k
93a6dd1c93SGiorgos Keramidasor
94a6dd1c93SGiorgos Keramidas.Cm K
959b50d902SRodney W. Grimesis appended to the number, the file is split into
969b50d902SRodney W. Grimes.Ar byte_count
979b50d902SRodney W. Grimeskilobyte pieces.
989b50d902SRodney W. GrimesIf
994e9e907dSRuslan Ermilov.Cm m
100a6dd1c93SGiorgos Keramidasor
101a6dd1c93SGiorgos Keramidas.Cm M
1029b50d902SRodney W. Grimesis appended to the number, the file is split into
1039b50d902SRodney W. Grimes.Ar byte_count
1049b50d902SRodney W. Grimesmegabyte pieces.
105a6dd1c93SGiorgos KeramidasIf
106a6dd1c93SGiorgos Keramidas.Cm g
107a6dd1c93SGiorgos Keramidasor
108a6dd1c93SGiorgos Keramidas.Cm G
109a6dd1c93SGiorgos Keramidasis appended to the number, the file is split into
110a6dd1c93SGiorgos Keramidas.Ar byte_count
111a6dd1c93SGiorgos Keramidasgigabyte pieces.
112*ac17fc81SJan Schaumann.It Fl c
113*ac17fc81SJan SchaumannContinue creating files and do not overwrite existing
114*ac17fc81SJan Schaumannoutput files.
1157f418e34SEitan Adler.It Fl d
1167f418e34SEitan AdlerUse a numeric suffix instead of a alphabetic suffix.
11733eafb83STim J. Robbins.It Fl l Ar line_count
118cff548f0STom RhodesCreate split files
11949198c42SGiorgos Keramidas.Ar line_count
1209b50d902SRodney W. Grimeslines in length.
1210e286f08SDavid Schultz.It Fl n Ar chunk_count
122f806ea8aSGavin AtkinsonSplit file into
1230e286f08SDavid Schultz.Ar chunk_count
1240e286f08SDavid Schultzsmaller files.
125e48cafb5SFernando ApesteguíaThe first n - 1 files will be of size (size of
126e48cafb5SFernando Apesteguía.Ar file
127e48cafb5SFernando Apesteguía/
128e48cafb5SFernando Apesteguía.Ar chunk_count
129e48cafb5SFernando Apesteguía)
130e48cafb5SFernando Apesteguíaand the last file will contain the remaining bytes.
1312fa6610fSArchie Cobbs.It Fl p Ar pattern
1322fa6610fSArchie CobbsThe file is split whenever an input line matches
1332fa6610fSArchie Cobbs.Ar pattern ,
1342fa6610fSArchie Cobbswhich is interpreted as an extended regular expression.
1352fa6610fSArchie CobbsThe matching line will be the first line of the next output file.
1362fa6610fSArchie CobbsThis option is incompatible with the
1372fa6610fSArchie Cobbs.Fl b
1382fa6610fSArchie Cobbsand
1392fa6610fSArchie Cobbs.Fl l
1402fa6610fSArchie Cobbsoptions.
1419b50d902SRodney W. Grimes.El
1429b50d902SRodney W. Grimes.Pp
1439b50d902SRodney W. GrimesIf additional arguments are specified, the first is used as the name
1449b50d902SRodney W. Grimesof the input file which is to be split.
1459b50d902SRodney W. GrimesIf a second additional argument is specified, it is used as a prefix
1469b50d902SRodney W. Grimesfor the names of the files into which the file is split.
1479b50d902SRodney W. GrimesIn this case, each file into which the file is split is named by the
14841850495SMike Barcroftprefix followed by a lexically ordered suffix using
14941850495SMike Barcroft.Ar suffix_length
15041850495SMike Barcroftcharacters in the range
15149198c42SGiorgos Keramidas.Dq Li a Ns - Ns Li z .
15241850495SMike BarcroftIf
15341850495SMike Barcroft.Fl a
154c4f7198fSJan Schaumannis not specified, two letters are used as the initial suffix.
155c4f7198fSJan SchaumannIf the output does not fit into the resulting number of files and the
156c4f7198fSJan Schaumann.Fl d
157c4f7198fSJan Schaumannflag is not specified, then the suffix length is automatically extended as
158c4f7198fSJan Schaumannneeded such that all output files continue to sort in lexical order.
1599b50d902SRodney W. Grimes.Pp
1609b50d902SRodney W. GrimesIf the
16149198c42SGiorgos Keramidas.Ar prefix
1629b50d902SRodney W. Grimesargument is not specified, the file is split into lexically ordered
163e93586dfSTim J. Robbinsfiles named with the prefix
164e93586dfSTim J. Robbins.Dq Li x
16541850495SMike Barcroftand with suffixes as above.
166*ac17fc81SJan Schaumann.Pp
167*ac17fc81SJan SchaumannBy default,
168*ac17fc81SJan Schaumann.Nm
169*ac17fc81SJan Schaumannwill overwrite any existing output files.
170*ac17fc81SJan SchaumannIf the
171*ac17fc81SJan Schaumann.Fl c
172*ac17fc81SJan Schaumannflag is specified,
173*ac17fc81SJan Schaumann.Nm
174*ac17fc81SJan Schaumannwill instead create files with names that do not already exist.
1755c9fc899STim J. Robbins.Sh ENVIRONMENT
1765c9fc899STim J. RobbinsThe
1775c9fc899STim J. Robbins.Ev LANG , LC_ALL , LC_CTYPE
1785c9fc899STim J. Robbinsand
1795c9fc899STim J. Robbins.Ev LC_COLLATE
1805c9fc899STim J. Robbinsenvironment variables affect the execution of
1815c9fc899STim J. Robbins.Nm
1825c9fc899STim J. Robbinsas described in
1835c9fc899STim J. Robbins.Xr environ 7 .
184a866e170SRuslan Ermilov.Sh EXIT STATUS
1855c9fc899STim J. Robbins.Ex -std
186e48cafb5SFernando Apesteguía.Sh EXAMPLES
187e48cafb5SFernando ApesteguíaSplit input into as many files as needed, so that each file contains at most 2
188e48cafb5SFernando Apesteguíalines:
189e48cafb5SFernando Apesteguía.Bd -literal -offset indent
190e48cafb5SFernando Apesteguía$ echo -e "first line\\nsecond line\\nthird line\\nforth line" | split -l2
191e48cafb5SFernando Apesteguía.Ed
192e48cafb5SFernando Apesteguía.Pp
193e48cafb5SFernando ApesteguíaSplit input in chunks of 10 bytes using numeric prefixes for file names.
194e48cafb5SFernando ApesteguíaThis generates two files of 10 bytes (x00 and x01) and a third file (x02) with the
195e48cafb5SFernando Apesteguíaremaining 2 bytes:
196e48cafb5SFernando Apesteguía.Bd -literal -offset indent
197e48cafb5SFernando Apesteguía$ echo -e "This is 22 bytes long" | split -d -b10
198e48cafb5SFernando Apesteguía.Ed
199e48cafb5SFernando Apesteguía.Pp
200e48cafb5SFernando ApesteguíaSplit input generating 6 files:
201e48cafb5SFernando Apesteguía.Bd -literal -offset indent
202fb499259SMateusz Piotrowski$ echo -e "This is 22 bytes long" | split -n 6
203e48cafb5SFernando Apesteguía.Ed
204e48cafb5SFernando Apesteguía.Pp
205e48cafb5SFernando ApesteguíaSplit input creating a new file every time a line matches the regular expression
206e48cafb5SFernando Apesteguíafor a
207e48cafb5SFernando Apesteguía.Dq t
208e48cafb5SFernando Apesteguíafollowed by either
209e48cafb5SFernando Apesteguía.Dq a
210e48cafb5SFernando Apesteguíaor
211e48cafb5SFernando Apesteguía.Dq u
212e48cafb5SFernando Apesteguíathus creating two files:
213e48cafb5SFernando Apesteguía.Bd -literal -offset indent
214e48cafb5SFernando Apesteguía$ echo -e "stack\\nstock\\nstuck\\nanother line" | split -p 't[au]'
215e48cafb5SFernando Apesteguía.Ed
2162fa6610fSArchie Cobbs.Sh SEE ALSO
2173662a240STim J. Robbins.Xr csplit 1 ,
21876a06f84SBen Smithurst.Xr re_format 7
2193662a240STim J. Robbins.Sh STANDARDS
2203662a240STim J. RobbinsThe
2213662a240STim J. Robbins.Nm
2223662a240STim J. Robbinsutility conforms to
2233662a240STim J. Robbins.St -p1003.1-2001 .
2249b50d902SRodney W. Grimes.Sh HISTORY
2259b50d902SRodney W. GrimesA
2268fe908efSRuslan Ermilov.Nm
2279b50d902SRodney W. Grimescommand appeared in
22803c249afSTim J. Robbins.At v3 .
2295c053aa3SKyle Evans.Pp
2305c053aa3SKyle EvansBefore
2315c053aa3SKyle Evans.Fx 14 ,
2327aaa50c6SKyle Evanspattern and line matching only operated on lines shorter than 65,536 bytes.
233