version 2, including all changes.
.
Rev |
Author |
# |
Line |
1 |
perry |
1 |
CSPLIT |
|
|
2 |
!!!CSPLIT |
|
|
3 |
NAME |
|
|
4 |
SYNOPSIS |
|
|
5 |
DESCRIPTION |
|
|
6 |
AUTHOR |
|
|
7 |
REPORTING BUGS |
|
|
8 |
COPYRIGHT |
|
|
9 |
SEE ALSO |
|
|
10 |
---- |
|
|
11 |
!!NAME |
|
|
12 |
|
|
|
13 |
|
|
|
14 |
csplit - split a file into sections determined by context lines |
|
|
15 |
!!SYNOPSIS |
|
|
16 |
|
|
|
17 |
|
|
|
18 |
__csplit__ [[''OPTION'']... ''FILE |
|
|
19 |
PATTERN''... |
|
|
20 |
!!DESCRIPTION |
|
|
21 |
|
|
|
22 |
|
|
|
23 |
Output pieces of FILE separated by PATTERN(s) to files |
|
|
24 |
`xx01', `xx02', ..., and output byte counts of each piece to |
|
|
25 |
standard output. |
|
|
26 |
|
|
|
27 |
|
|
|
28 |
__-b__, __--suffix-format__=''FORMAT'' use sprintf |
|
|
29 |
FORMAT instead of %d |
|
|
30 |
|
|
|
31 |
|
|
|
32 |
__-f__, __--prefix__=''PREFIX'' |
|
|
33 |
|
|
|
34 |
|
|
|
35 |
use PREFIX instead of `xx' |
|
|
36 |
|
|
|
37 |
|
|
|
38 |
__-k__, __--keep-files__ |
|
|
39 |
|
|
|
40 |
|
|
|
41 |
do not remove output files on errors |
|
|
42 |
|
|
|
43 |
|
|
|
44 |
__-n__, __--digits__=''DIGITS'' |
|
|
45 |
|
|
|
46 |
|
|
|
47 |
use specified number of digits instead of 2 |
|
|
48 |
|
|
|
49 |
|
|
|
50 |
__-s__, __--quiet__, __--silent__ |
|
|
51 |
|
|
|
52 |
|
|
|
53 |
do not print counts of output file sizes |
|
|
54 |
|
|
|
55 |
|
|
|
56 |
__-z__, __--elide-empty-files__ |
|
|
57 |
|
|
|
58 |
|
|
|
59 |
remove empty output files |
|
|
60 |
|
|
|
61 |
|
|
|
62 |
__--help__ |
|
|
63 |
|
|
|
64 |
|
|
|
65 |
display this help and exit |
|
|
66 |
|
|
|
67 |
|
|
|
68 |
__--version__ |
|
|
69 |
|
|
|
70 |
|
|
|
71 |
output version information and exit |
|
|
72 |
|
|
|
73 |
|
|
|
74 |
Read standard input if FILE is -. Each PATTERN may |
|
|
75 |
be: |
|
|
76 |
|
|
|
77 |
|
|
|
78 |
INTEGER |
|
|
79 |
|
|
|
80 |
|
|
|
81 |
copy up to but not including specified line |
|
|
82 |
number |
|
|
83 |
|
|
|
84 |
|
|
|
85 |
/REGEXP/[[OFFSET] |
|
|
86 |
|
|
|
87 |
|
|
|
88 |
copy up to but not including a matching line |
|
|
89 |
|
|
|
90 |
|
|
|
91 |
%REGEXP%[[OFFSET] |
|
|
92 |
|
|
|
93 |
|
|
|
94 |
skip to, but not including a matching line |
|
|
95 |
|
|
|
96 |
|
|
|
97 |
{INTEGER} |
|
|
98 |
|
|
|
99 |
|
|
|
100 |
repeat the previous pattern specified number of |
|
|
101 |
times |
|
|
102 |
|
|
|
103 |
|
|
|
104 |
{*} |
|
|
105 |
|
|
|
106 |
|
|
|
107 |
repeat the previous pattern as many times as |
|
|
108 |
possible |
|
|
109 |
|
|
|
110 |
|
|
|
111 |
A line OFFSET is a required `+' or `-' followed by a |
|
|
112 |
positive integer. |
|
|
113 |
!!AUTHOR |
|
|
114 |
|
|
|
115 |
|
2 |
perry |
116 |
Written by Stuart Kemp and David !MacKenzie. |
1 |
perry |
117 |
!!REPORTING BUGS |
|
|
118 |
|
|
|
119 |
|
|
|
120 |
Report bugs to |
|
|
121 |
!!COPYRIGHT |
|
|
122 |
|
|
|
123 |
|
|
|
124 |
Copyright 1999 Free Software Foundation, Inc. |
|
|
125 |
This is free software; see the source for copying |
|
|
126 |
conditions. There is NO warranty; not even for |
|
|
127 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR |
|
|
128 |
PURPOSE. |
|
|
129 |
!!SEE ALSO |
|
|
130 |
|
|
|
131 |
|
|
|
132 |
The full documentation for __csplit__ is maintained as a |
|
|
133 |
Texinfo manual. If the __info__ and __csplit__ |
|
|
134 |
programs are properly installed at your site, the |
|
|
135 |
command |
|
|
136 |
|
|
|
137 |
|
|
|
138 |
__info csplit__ |
|
|
139 |
|
|
|
140 |
|
|
|
141 |
should give you access to the complete manual. |
|
|
142 |
---- |