sbase/sort.1

91 lines
1.6 KiB
Groff
Raw Normal View History

2015-01-30 17:49:13 -05:00
.Dd January 30, 2015
.Dt SORT 1
.Os sbase
2015-01-30 17:49:13 -05:00
.Sh NAME
.Nm sort
.Nd sort lines
.Sh SYNOPSIS
.Nm
.Op Fl bnru
.Op Fl t Ar delim
.Op Fl k Ar key ...
.Op Ar file ...
.Sh DESCRIPTION
.Nm
2015-02-01 14:52:28 -05:00
writes the sorted concatenation of the given
.Ar files
to stdout. If no
.Ar file
is given,
.Nm
reads from stdin.
2015-01-30 17:49:13 -05:00
.Sh OPTIONS
.Bl -tag -width Ds
.It Fl C
2015-02-01 14:52:28 -05:00
Check that the concatenation of the given
.Ar files
is sorted rather than sorting them. In this mode, no output is printed to
stdout, and the exit status indicates the result of the check.
2015-01-30 17:49:13 -05:00
.It Fl b
2015-02-01 14:52:28 -05:00
Skip leading whitespace of columns when sorting.
2015-01-30 17:49:13 -05:00
.It Fl c
2015-02-01 14:52:28 -05:00
The same as
2015-01-30 17:49:13 -05:00
.Fl C
2014-11-23 14:35:56 -05:00
except that when disorder is detected, a message is printed to stderr
indicating the location of the disorder.
2015-01-30 17:49:13 -05:00
.It Fl k Ar key
2015-02-01 14:52:28 -05:00
Specifies a key definition of the form
2015-01-30 17:49:13 -05:00
.Sm off
2015-02-01 11:45:51 -05:00
.Sy S
.No [.
2015-01-30 17:49:13 -05:00
.Sy s
2015-02-01 11:45:51 -05:00
.No ][
2015-01-30 17:49:13 -05:00
.Sy f
2015-02-01 11:45:51 -05:00
.No ][,
2015-01-30 17:49:13 -05:00
.Sy E
2015-02-01 11:45:51 -05:00
.No [.
2015-01-30 17:49:13 -05:00
.Sy e
2015-02-01 11:45:51 -05:00
.No ][
2015-01-30 17:49:13 -05:00
.Sy f
2015-02-01 11:45:51 -05:00
.No ]]
2015-01-30 17:49:13 -05:00
.Sm on
where
2015-01-30 17:49:13 -05:00
.Sm off
.Sy S
,
.Sy s
,
.Sy E
.Sm on
and
2015-01-30 17:49:13 -05:00
.Sy e
are the starting column, starting character in that column, ending column and
2015-01-30 17:49:13 -05:00
the ending character of that column respectively. If they are not specified,
.Sy s
refers to the first character of the specified starting column,
2015-01-30 17:49:13 -05:00
.Sy E
refers to the last column of every line, and
2015-01-30 17:49:13 -05:00
.Sy e
2015-02-01 11:45:51 -05:00
refers to the last character of the ending column.
2015-01-30 17:49:13 -05:00
.Sy f
can be used to specify options
2015-01-30 17:49:13 -05:00
.Sm off
2015-02-01 13:02:48 -05:00
(
2015-01-30 17:49:13 -05:00
.Sy n
,
.Sy b
2015-02-01 13:02:48 -05:00
)
2015-01-30 17:49:13 -05:00
.Sm on
that only apply to this key definition.
2015-01-30 17:49:13 -05:00
.Sy b
is special in that it only applies to the column that it was specified after.
2015-01-30 17:49:13 -05:00
.It Fl n
2015-02-01 14:52:28 -05:00
Perform a numeric sort.
2015-01-30 17:49:13 -05:00
.It Fl r
2015-02-01 14:52:28 -05:00
Reverses the sort.
2015-01-30 17:49:13 -05:00
.It Fl t Ar delim
2015-02-01 14:52:28 -05:00
Specifies the field delimiter.
2015-01-30 17:49:13 -05:00
.It Fl u
2015-02-01 14:52:28 -05:00
Prints equal lines only once.
2015-01-30 17:49:13 -05:00
.El