Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
sort-win32.2019-12-04.src.tgz.sig2 | 2019-12-04 | 849 Bytes | |
sort-win32.2019-12-04.zip.sig2 | 2019-12-04 | 849 Bytes | |
sort-win32.2019-12-04.src.tgz | 2019-12-04 | 11.9 kB | |
sort-win32.2019-12-04.zip | 2019-12-04 | 344.7 kB | |
sort-win32.2019-11-29.src.tgz.sig2 | 2019-11-29 | 849 Bytes | |
sort-win32.2019-11-29.zip.sig2 | 2019-11-29 | 849 Bytes | |
sort-win32.2019-11-29.src.tgz | 2019-11-29 | 11.0 kB | |
sort-win32.2019-11-29.zip | 2019-11-29 | 179.0 kB | |
Totals: 8 Items | 550.0 kB | 0 |
Sort/Shuf for Win32, created by LoRd_MuldeR <mulder2@gmx.de> This work is licensed under the CC0 1.0 Universal License. Reads lines from the stdin, sorts these lines, and prints them to the stdout. Optionally, lines can be read from one or multiple files instead of stdin. Usage: sort.exe [OPTIONS] [<FILE_1> [<FILE_2> ... ]] Sorting options: --reverse Sort the lines descending, default is ascending. --ignore-case Ignore the character casing while sorting the lines. --unique Discard any duplicate lines from the result set. --numerical Digits in the lines are considered as numerical content. Input options: --trim Remove leading/trailing whitespace characters. --skip-blank Discard any lines consisting solely of whitespaces. --utf16 Process input lines as UTF-16, default is UTF-8. Other options: --shuffle Shuffle the lines randomly, instead of sorting. --flush Force flush of the stdout after each line was printed. --keep-going Do not abort, if processing an input file failed.