diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-26 16:38:00 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-04-26 16:38:00 -0400 |
| commit | 97d5c458cfa039d857301e1ca7d5af3beb37131d (patch) | |
| tree | b460cd850d0537eb71806ba30358840377b27688 /static/unix-v10/man1/sort.1 | |
| parent | b89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff) | |
build: Better Build System
Diffstat (limited to 'static/unix-v10/man1/sort.1')
| -rw-r--r-- | static/unix-v10/man1/sort.1 | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/static/unix-v10/man1/sort.1 b/static/unix-v10/man1/sort.1 new file mode 100644 index 00000000..29157a8f --- /dev/null +++ b/static/unix-v10/man1/sort.1 @@ -0,0 +1,44 @@ +.pa 1 +.he 'SORT (I)'9/2/72'SORT (I)' +.ti 0 +NAME sort -- sort a file +.sp +.ti 0 +SYNOPSIS sort____ [ -_ ] [ input [ output ] ] +.sp +.ti 0 +DESCRIPTION sort____ +will sort the input file and write the +sorted file on the output file. +If the output file is not given, +the input file is rewritten. +If the input file is missing, +sort uses the standard input as +input and the standard output for output. +Thus sort____ may be used as a filter. + +The sort is line-by-line in increasing ASCII collating sequence, +except that upper-case letters are considered +the same as the lower-case letters. + +The optional argument -_ will cause a reverse sort. + +sort____ is implemented in such a way that + + sort /dev/mt0 + +works correctly provided the tape is not too big. +.sp +.ti 0 +FILES /tmp/stm? +.sp +.ti 0 +SEE ALSO -- +.sp +.ti 0 +DIAGNOSTICS -- +.sp +.ti 0 +BUGS The +largest file that can be +sorted is about 128K bytes. |
