kernel: restore setting KTS_NONE
[minix.git] / man / man1 / split.1
blob54f423a88970a1dd1083c4361c7f37288e63e186
1 .TH SPLIT 1
2 .SH NAME
3 split \- split a large file into several smaller files
4 .SH SYNOPSIS
5 \fBsplit\fR [\fB\-\fIn\fR]\fR [\fIfile \fR[\fIprefix\fR]\fR]\fR
6 .br
7 .de FL
8 .TP
9 \\fB\\$1\\fR
10 \\$2
12 .de EX
13 .TP 20
14 \\fB\\$1\\fR
15 # \\$2
17 .SH OPTIONS
18 .TP 5
19 .B \-\fIn\fP
20 # Number of lines per piece (default: 1000)
21 .SH EXAMPLES
22 .TP 20
23 .B split \-200 file
24 # Split \fIfile\fP into pieces of 200 lines each
25 .TP 20
26 .B split file z
27 # Split \fIfile\fP into \fIzaa\fP, \fIzab\fP, etc.
28 .SH DESCRIPTION
29 .PP
30 .I Split 
31 reads \fIfile\fP and writes it out in \fIn\fP-line pieces.
32 By default, the pieces are called \fIxaa\fP, \fIxab\fP, etc.
33 The optional second argument can be used to provide an alternative
34 prefix for the output file names.
35 .SH "SEE ALSO"
36 .BR cat (1).