[BACK]Return to split.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / split

Annotation of src/usr.bin/split/split.1, Revision 1.10

1.10    ! jmc         1: .\"    $OpenBSD: split.1,v 1.9 2003/06/03 02:56:16 millert Exp $
1.1       deraadt     2: .\"    $NetBSD: split.1,v 1.5 1994/12/21 08:20:35 jtc Exp $
                      3: .\"
                      4: .\" Copyright (c) 1990, 1991, 1993, 1994
                      5: .\"    The Regents of the University of California.  All rights reserved.
                      6: .\"
                      7: .\" Redistribution and use in source and binary forms, with or without
                      8: .\" modification, are permitted provided that the following conditions
                      9: .\" are met:
                     10: .\" 1. Redistributions of source code must retain the above copyright
                     11: .\"    notice, this list of conditions and the following disclaimer.
                     12: .\" 2. Redistributions in binary form must reproduce the above copyright
                     13: .\"    notice, this list of conditions and the following disclaimer in the
                     14: .\"    documentation and/or other materials provided with the distribution.
1.9       millert    15: .\" 3. Neither the name of the University nor the names of its contributors
1.1       deraadt    16: .\"    may be used to endorse or promote products derived from this software
                     17: .\"    without specific prior written permission.
                     18: .\"
                     19: .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     20: .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     21: .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     22: .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     23: .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     24: .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     25: .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     26: .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     27: .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     28: .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     29: .\" SUCH DAMAGE.
                     30: .\"
                     31: .\"    @(#)split.1     8.3 (Berkeley) 4/16/94
                     32: .\"
                     33: .Dd April 16, 1994
                     34: .Dt SPLIT 1
                     35: .Os
                     36: .Sh NAME
                     37: .Nm split
                     38: .Nd split a file into pieces
                     39: .Sh SYNOPSIS
                     40: .Nm split
1.10    ! jmc        41: .Oo
        !            42: .Fl b
        !            43: .Sm off
        !            44: .Ar byte_count Op Ar k | m
        !            45: .Sm on
        !            46: .Oc
1.1       deraadt    47: .Op Fl l Ar line_count
1.3       millert    48: .Op Fl p Ar pattern
1.1       deraadt    49: .Op Ar file Op Ar name
                     50: .Sh DESCRIPTION
                     51: The
1.5       aaron      52: .Nm
1.1       deraadt    53: utility reads the given
                     54: .Ar file
                     55: (or standard input if no file is specified)
                     56: and breaks it up into files of 1000 lines each.
                     57: .Pp
                     58: The options are as follows:
                     59: .Bl -tag -width Ds
1.10    ! jmc        60: .It Xo
        !            61: .Fl b
        !            62: .Sm off
        !            63: .Ar byte_count
        !            64: .Op Ar k | m
        !            65: .Sm on
        !            66: .Xc
1.1       deraadt    67: Create smaller files
                     68: .Ar byte_count
                     69: bytes in length.
                     70: If
1.5       aaron      71: .Sq k
1.1       deraadt    72: is appended to the number, the file is split into
                     73: .Ar byte_count
                     74: kilobyte pieces.
                     75: If
1.5       aaron      76: .Sq m
1.1       deraadt    77: is appended to the number, the file is split into
                     78: .Ar byte_count
                     79: megabyte pieces.
1.10    ! jmc        80: .It Fl l Ar line_count
1.1       deraadt    81: Create smaller files
1.10    ! jmc        82: .Ar line_count
1.1       deraadt    83: lines in length.
1.3       millert    84: .It Fl p Ar pattern
                     85: The file is split whenever an input line matches
                     86: .Ar pattern ,
                     87: which is interpreted as an extended regular expression.
                     88: The matching line will be the first line of the next output file.
                     89: This option is incompatible with the
                     90: .Fl b
                     91: and
                     92: .Fl l
                     93: options.
1.1       deraadt    94: .El
                     95: .Pp
                     96: If additional arguments are specified, the first is used as the name
                     97: of the input file which is to be split.
                     98: If a second additional argument is specified, it is used as a prefix
                     99: for the names of the files into which the file is split.
                    100: In this case, each file into which the file is split is named by the
1.4       aaron     101: prefix followed by a lexically ordered suffix in the range of
1.5       aaron     102: .Dq aa-zz .
1.1       deraadt   103: .Pp
                    104: If the
                    105: .Ar name
                    106: argument is not specified, the file is split into lexically ordered
                    107: files named in the range of
1.5       aaron     108: .Dq xaa-zzz .
1.6       aaron     109: .Sh SEE ALSO
1.7       mpech     110: .Xr re_format 7
1.6       aaron     111: .Sh HISTORY
                    112: A
                    113: .Nm
                    114: command appeared in
1.8       mickey    115: .At v3 .
1.1       deraadt   116: .Sh BUGS
                    117: For historical reasons, if you specify
                    118: .Ar name ,
1.5       aaron     119: .Nm
1.1       deraadt   120: can only create 676 separate
                    121: files.
                    122: The default naming convention allows 2028 separate files.
1.3       millert   123: .Pp
                    124: The maximum line length for matching patterns is 65536.