Lines Matching full:split
32 .Nm split
33 .Nd split a file into pieces
88 Create split files
95 is appended to the number, the file is split into
102 is appended to the number, the file is split into
109 is appended to the number, the file is split into
118 Create split files
122 Split file into
132 The file is split whenever an input line matches
144 of the input file which is to be split.
146 for the names of the files into which the file is split.
147 In this case, each file into which the file is split is named by the
162 argument is not specified, the file is split into lexically ordered
187 Split input into as many files as needed, so that each file contains at most 2
190 $ echo -e "first line\\nsecond line\\nthird line\\nforth line" | split -l2
193 Split input in chunks of 10 bytes using numeric prefixes for file names.
197 $ echo -e "This is 22 bytes long" | split -d -b10
200 Split input generating 6 files:
202 $ echo -e "This is 22 bytes long" | split -n 6
205 Split input creating a new file every time a line matches the regular expression
214 $ echo -e "stack\\nstock\\nstuck\\nanother line" | split -p 't[au]'