SORT(1) | User Commands | SORT(1) |
sort - sort or merge files
sort [-mubdfiMnrtx]
[+pos1 [-pos2]] ...
[-k keydef] [-o name]
[-T directory] [-y[kmem]]
[-z recsz] [name] ...
Sort sorts lines of all the named files together and writes the result on the standard output. The name `-' means the standard input. If no input files are named, the standard input is sorted.
The default sort key is an entire line. Default ordering is lexicographic by characters in the current collating sequence.
The behavior of sort is altered by the following options:
The ordering is affected globally by the following options, one or more of which may appear.
The notation +pos1 -pos2 restricts a sort key to a field beginning at pos1 and ending just before pos2. Pos1 and pos2 each have the form m.n, optionally followed by one or more of the flags bdfiMnr, where m tells a number of fields to skip from the beginning of the line and n tells a number of characters to skip further. If any flags are present they override all the global ordering options for this key. If the -b option is in effect n is counted from the first nonblank in the field; -b is attached independently to pos2. A missing .n means .0; a missing -pos2 means the end of the line. Under the -tx option, fields are strings separated by x; otherwise fields are nonempty nonblank strings separated by blanks.
When there are multiple sort keys, later keys are compared only after all earlier keys compare equal. Lines that otherwise compare equal are ordered with all bytes significant.
The -k keydef option, which was introduced by POSIX.2, provides another method to specify sort keys. Start field and end field are separated by commas, field and character numbers start at 1 instead of 0, and, if no character position is specified for the end key, the last character of the field is used; otherwise, the meaning of field specifications is identical.
Print in alphabetical order all the unique spellings in a list of words. Capitalized words differ from uncapitalized.
sort -u +0f +0 list
Print the password file (passwd(5)) sorted by user id number (the 3rd colon-separated field).
sort -t: +2n /etc/passwd
Print the first instance of each month in an already sorted file of (month day) entries. The options -um with just one input file make the choice of a unique representative from a set of equal lines predictable.
sort -um +0 -1 dates
comm(1), join(1), uniq(1), locale(7)
Comments and exits with nonzero status for various trouble conditions and for disorder discovered under option -c.
Maximum performance is usually achieved if the TMPDIR environment variable is set to a directory on a tmpfs file system, and the -y option is given.
2/2/05 | Heirloom Toolchest |