NetBSD/usr.bin/sort/sort.1

462 lines
11 KiB
Groff
Raw Normal View History

.\" $NetBSD: sort.1,v 1.27 2009/03/11 13:58:30 joerg Exp $
2003-08-07 15:32:34 +04:00
.\"
.\" Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
.\" All rights reserved.
.\"
.\" This code is derived from software contributed to The NetBSD Foundation
.\" by Ben Harris and Jaromir Dolecek.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
2000-10-07 20:39:34 +04:00
.\" Copyright (c) 1991, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
.\" This code is derived from software contributed to Berkeley by
.\" the Institute of Electrical and Electronics Engineers, Inc.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. Neither the name of the University nor the names of its contributors
2000-10-07 20:39:34 +04:00
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" @(#)sort.1 8.1 (Berkeley) 6/6/93
.\"
.Dd January 13, 2001
2000-10-07 20:39:34 +04:00
.Dt SORT 1
.Os
.Sh NAME
.Nm sort
.Nd sort or merge text files
.Sh SYNOPSIS
.Nm sort
.Op Fl bcdfHimnrSsu
2000-10-07 20:39:34 +04:00
.Oo
2000-10-14 22:48:49 +04:00
.Fl k
.Ar field1 Ns Op Li \&, Ns Ar field2
2000-10-07 20:39:34 +04:00
.Oc
.Op Fl o Ar output
.Op Fl R Ar char
.Op Fl T Ar dir
.Op Fl t Ar char
.Op Ar
2000-10-07 20:39:34 +04:00
.Sh DESCRIPTION
The
.Nm
utility sorts text files by lines.
2000-10-07 20:39:34 +04:00
Comparisons are based on one or more sort keys extracted
from each line of input, and are performed lexicographically.
By default, if keys are not given,
.Nm
2000-10-07 20:39:34 +04:00
regards each input line as a single field.
.Pp
The following options are available:
2000-10-14 22:48:49 +04:00
.Bl -tag -width Fl
2000-10-07 20:39:34 +04:00
.It Fl c
Check that the single input file is sorted.
If the file is not sorted,
2000-10-14 22:48:49 +04:00
.Nm
produces the appropriate error messages and exits with code 1; otherwise,
2000-10-14 22:48:49 +04:00
.Nm
2000-10-07 20:39:34 +04:00
returns 0.
2000-10-14 22:48:49 +04:00
.Nm
2000-10-07 20:39:34 +04:00
.Fl c
produces no output.
.It Fl m
Merge only; the input files are assumed to be pre-sorted.
.It Fl o Ar output
The argument given is the name of an
.Ar output
file to be used instead of the standard output.
This file can be the same as one of the input files.
.It Fl T Ar dir
Use
.Ar dir
as the directory for temporary files.
The default is the value specified in the environment variable
.Ev TMPDIR or
.Pa /tmp
if
.Ev TMPDIR
is not defined.
2000-10-07 20:39:34 +04:00
.It Fl u
Unique: suppress all but one in each set of lines having equal keys.
2000-10-07 20:39:34 +04:00
If used with the
.Fl c
option, check that there are no lines with duplicate keys.
2000-10-07 20:39:34 +04:00
.El
.Pp
The following options override the default ordering rules.
When ordering options appear independent of key field
specifications, the requested field ordering rules are
applied globally to all sort keys.
When attached to a specific key (see
.Fl k ) ,
the ordering options override
all global ordering options for that key.
2000-10-14 22:48:49 +04:00
.Bl -tag -width Fl
2000-10-07 20:39:34 +04:00
.It Fl d
Only blank space and alphanumeric characters
.\" according
.\" to the current setting of LC_CTYPE
are used
in making comparisons.
.It Fl f
Considers all lowercase characters that have uppercase
equivalents to be the same for purposes of comparison.
2000-10-07 20:39:34 +04:00
.It Fl i
Ignore all non-printable characters.
.It Fl n
An initial numeric string, consisting of optional blank space, optional
minus sign, and zero or more digits (including decimal point)
2000-10-07 20:39:34 +04:00
.\" with
.\" optional radix character and thousands
.\" separator
.\" (as defined in the current locale),
is sorted by arithmetic value.
(The
.Fl n
option no longer implies the
2000-10-07 20:39:34 +04:00
.Fl b
option.)
.It Fl r
Reverse the sense of comparisons.
.It Fl S
Don't use stable sort.
Default is to use stable sort.
.It Fl s
Use stable sort.
This is the default.
2003-01-06 16:26:24 +03:00
Provided for compatibility with other
.Nm
implementations only.
.It Fl H
Use a merge sort instead of a radix sort.
This option should be used for files larger than 60Mb.
2000-10-07 20:39:34 +04:00
.El
.Pp
The treatment of field separators can be altered using these options:
2000-10-14 22:48:49 +04:00
.Bl -tag -width Fl
2000-10-07 20:39:34 +04:00
.It Fl b
Ignores leading blank space when determining the start
and end of a restricted sort key.
A
.Fl b
option specified before the first
.Fl k
option applies globally to all
.Fl k
options.
Otherwise, the
.Fl b
option can be attached independently to each
2000-10-07 20:39:34 +04:00
.Ar field
argument of the
.Fl k
option (see below).
Note that the
.Fl b
option has no effect unless key fields are specified.
2000-10-07 20:39:34 +04:00
.It Fl t Ar char
2000-10-14 22:48:49 +04:00
.Ar char
is used as the field separator character.
The initial
2000-10-07 20:39:34 +04:00
.Ar char
is not considered to be part of a field when determining
key offsets (see below).
Each occurrence of
.Ar char
is significant (for example,
.Dq Ar charchar
delimits an empty field).
If
.Fl t
is not specified, the default field separator is a sequence of
blank-space characters, and consecutive blank spaces do
.Em not
delimit an empty field; further, the initial blank space
.Em is
considered part of a field when determining key offsets.
.It Fl R Ar char
2000-10-14 22:48:49 +04:00
.Ar char
2000-10-07 20:39:34 +04:00
is used as the record separator character.
This should be used with discretion;
.Fl R Ar \*[Lt]alphanumeric\*[Gt]
2000-10-07 20:39:34 +04:00
usually produces undesirable results.
The default record separator is newline.
.It Fl k Ar field1 Ns Op Li \&, Ns Ar field2
2000-10-07 20:39:34 +04:00
Designates the starting position,
.Ar field1 ,
and optional ending position,
2000-10-07 20:39:34 +04:00
.Ar field2 ,
of a key field.
The
.Fl k
option replaces the obsolescent options
.Cm \(pl Ns Ar pos1
and
.Fl Ns Ar pos2 .
.El
.Pp
The following operands are available:
2000-10-14 22:48:49 +04:00
.Bl -tag -width Ar
.It Ar file
2000-10-07 20:39:34 +04:00
The pathname of a file to be sorted, merged, or checked.
If no
.Ar file
2000-10-07 20:39:34 +04:00
operands are specified, or if
a
.Ar file
operand is
2000-10-07 20:39:34 +04:00
.Fl ,
the standard input is used.
.El
2000-10-07 20:39:34 +04:00
.Pp
A field is defined as a minimal sequence of characters followed by a
2000-10-07 20:39:34 +04:00
field separator or a newline character.
By default, the first
blank space of a sequence of blank spaces acts as the field separator.
All blank spaces in a sequence of blank spaces are considered
as part of the next field; for example, all blank spaces at
the beginning of a line are considered to be part of the
first field.
.Pp
Fields are specified
by the
2000-10-14 22:48:49 +04:00
.Fl k
.Ar field1 Ns Op \&, Ns Ar field2
argument.
A missing
2000-10-07 20:39:34 +04:00
.Ar field2
argument defaults to the end of a line.
.Pp
The arguments
.Ar field1
and
.Ar field2
have the form
2000-10-14 22:48:49 +04:00
.Ar m Ns Li \&. Ns Ar n
and can be followed by one or more of the letters
2000-10-14 22:48:49 +04:00
.Cm b , d , f , i ,
.Cm n ,
and
.Cm r ,
which correspond to the options discussed above.
2000-10-07 20:39:34 +04:00
A
.Ar field1
position specified by
2000-10-14 22:48:49 +04:00
.Ar m Ns Li \&. Ns Ar n
.Pq Ar m , n No \*[Gt] 0
2000-10-07 20:39:34 +04:00
is interpreted as the
2000-10-14 22:48:49 +04:00
.Ar n Ns th
2000-10-07 20:39:34 +04:00
character in the
2000-10-14 22:48:49 +04:00
.Ar m Ns th
2000-10-07 20:39:34 +04:00
field.
A missing
2000-10-14 22:48:49 +04:00
.Li \&. Ns Ar n
2000-10-07 20:39:34 +04:00
in
.Ar field1
means
.Ql \&.1 ,
indicating the first character of the
2000-10-14 22:48:49 +04:00
.Ar m Ns th
field; if the
2000-10-07 20:39:34 +04:00
.Fl b
option is in effect,
2000-10-14 22:48:49 +04:00
.Ar n
is counted from the first non-blank character in the
2000-10-14 22:48:49 +04:00
.Ar m Ns th
2000-10-07 20:39:34 +04:00
field;
2000-10-14 22:48:49 +04:00
.Ar m Ns Li \&.1b
refers to the first non-blank character in the
2000-10-14 22:48:49 +04:00
.Ar m Ns th
2000-10-07 20:39:34 +04:00
field.
.Pp
A
.Ar field2
position specified by
2000-10-14 22:48:49 +04:00
.Ar m Ns Li \&. Ns Ar n
2000-10-07 20:39:34 +04:00
is interpreted as
the
2000-10-14 22:48:49 +04:00
.Ar n Ns th
2000-10-07 20:39:34 +04:00
character (including separators) of the
2000-10-14 22:48:49 +04:00
.Ar m Ns th
2000-10-07 20:39:34 +04:00
field.
A missing
2000-10-14 22:48:49 +04:00
.Li \&. Ns Ar n
indicates the last character of the
2000-10-14 22:48:49 +04:00
.Ar m Ns th
2000-10-07 20:39:34 +04:00
field;
.Ar m
2000-10-07 20:39:34 +04:00
= \&0
designates the end of a line.
Thus the option
2000-10-14 22:48:49 +04:00
.Fl k
.Sm off
.Xo
.Ar v Li \&. Ar x Li \&,
.Ar w Li \&. Ar y
.Xc
.Sm on
2000-10-07 20:39:34 +04:00
is synonymous with the obsolescent option
2000-10-14 22:48:49 +04:00
.Sm off
.Cm \(pl Ar v-\&1 Li \&. Ar x-\&1
.Fl Ar w-\&1 Li \&. Ar y ;
.Sm on
2000-10-07 20:39:34 +04:00
when
2000-10-14 22:48:49 +04:00
.Ar y
2000-10-07 20:39:34 +04:00
is omitted,
2000-10-14 22:48:49 +04:00
.Fl k
.Sm off
.Ar v Li \&. Ar x Li \&, Ar w
.Sm on
2000-10-07 20:39:34 +04:00
is synonymous with
2000-10-14 22:48:49 +04:00
.Sm off
.Cm \(pl Ar v-\&1 Li \&. Ar x-\&1
2000-10-14 22:48:49 +04:00
.Fl Ar w+1 Li \&.0 .
.Sm on
2000-10-07 20:39:34 +04:00
The obsolescent
.Cm \(pl Ns Ar pos1
.Fl Ns Ar pos2
option is still supported, except for
2001-12-08 22:16:07 +03:00
.Fl Ns Ar w Ns Li \&.0b ,
2000-10-07 20:39:34 +04:00
which has no
.Fl k
equivalent.
.Sh RETURN VALUES
Sort exits with one of the following values:
.Bl -tag -width flag -compact
2000-10-14 22:48:49 +04:00
.It 0
Normal behavior.
2000-10-14 22:48:49 +04:00
.It 1
On disorder (or non-uniqueness) with the
2000-10-07 20:39:34 +04:00
.Fl c
option
2000-10-14 22:48:49 +04:00
.It 2
An error occurred.
.El
.Sh ENVIRONMENT
If the following environment variable exists, it is used by
.Nm .
.Bl -tag -width Ev
.It Ev TMPDIR
.Nm
uses the contents of the
.Ev TMPDIR
environment variable as the path in which to store
temporary files.
.El
.Sh FILES
.Bl -tag -width outputNUMBER+some -compact
.It Pa /tmp/sort.*
Default temporary files.
2003-06-27 13:15:55 +04:00
.It Ar output Ns NUMBER
Temporary file which is used for output if
.Ar output
already exists.
Once sorting is finished, this file replaces
.Ar output
(via
.Xr link 2
and
2001-12-08 22:16:07 +03:00
.Xr unlink 2 ) .
.El
.Sh SEE ALSO
.Xr comm 1 ,
.Xr join 1 ,
2001-12-08 22:16:07 +03:00
.Xr uniq 1 ,
.Xr qsort 3 ,
.Xr radixsort 3
2000-10-07 20:39:34 +04:00
.Sh HISTORY
A
.Nm
2000-10-07 20:39:34 +04:00
command appeared in
.At v5 .
This
.Nm
implementation appeared in
.Bx 4.4
and is used since
.Nx 1.6 .
.Sh BUGS
To sort files larger than 60Mb, use
.Nm
.Fl H ;
files larger than 704Mb must be sorted in smaller pieces, then merged.
2000-10-07 20:39:34 +04:00
.Sh NOTES
This
.Nm
has no limits on input line length (other than imposed by available
memory) or any restrictions on bytes allowed within lines.
.Pp
To protect data
.Nm
.Fl o
calls
.Xr link 2
and
.Xr unlink 2 ,
and thus fails on protected directories.
.Pp
Input files should be text files.
If file doesn't end with record separator (which is typically newline), the
.Nm
utility silently supplies one.
.Pp
The current
.Nm
uses lexicographic radix sorting, which requires
2000-10-07 20:39:34 +04:00
that sort keys be kept in memory (as opposed to previous versions which used quick
and merge sorts and did not.)
Thus performance depends highly on efficient choice of sort keys, and the
.Fl b
option and the
.Ar field2
argument of the
.Fl k
option should be used whenever possible.
Similarly,
.Nm
2000-10-07 20:39:34 +04:00
.Fl k1f
is equivalent to
.Nm
2000-10-07 20:39:34 +04:00
.Fl f
and may take twice as long.