sbase/sort.1

19 lines
319 B
Groff
Raw Normal View History

2011-06-02 12:03:34 +00:00
.TH NL 1 sbase\-VERSION
.SH NAME
sort \- sort lines
.SH SYNOPSIS
.B sort
2011-06-02 12:09:30 +00:00
.RB [ \-ru ]
2011-06-02 12:03:34 +00:00
.RI [ file ...]
.SH DESCRIPTION
.B sort
writes the sorted concatenation of the given files to stdout. If no file is
given, sort reads from stdin.
.SH OPTIONS
.TP
2011-06-02 19:32:05 +00:00
.B \-r
2011-06-02 12:03:34 +00:00
reverses the sort.
2011-06-02 12:09:30 +00:00
.TP
2011-06-02 19:32:05 +00:00
.B \-u
2011-06-02 12:09:30 +00:00
prints repeated lines only once.