From 1d5addd14bc3f0c7279b41882fc9b8ff60fac450 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Wed, 17 Jan 2024 23:45:30 +0100 Subject: sort: add initial examples --- src/tools/sort.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/tools/sort.md (limited to 'src/tools/sort.md') diff --git a/src/tools/sort.md b/src/tools/sort.md new file mode 100644 index 0000000..e74b490 --- /dev/null +++ b/src/tools/sort.md @@ -0,0 +1,35 @@ +# sort(1) + +``` +sort [opts] [file] + opts: + -r reverse output + -b ignore leading blanks + + -n sort by numeric + -h sort by human numeric + -V sort by version + + -k sort by Nth key + -t field separator +``` + +## Examples +```sh +# Sort by directory sizes. +du -sh * | sort -h +``` + +```sh +# Sort numeric by second key. +# The default key separator is non-blank to blank transition. +echo 'a 4 +d 10 +c 21' | sort -k2 -n + +# Sort numeric by second key, split at comma. +echo 'a,4 +d,10 +c,21' | sort -k2 -n -t, +``` +> Use `--debug` to annotate part of the line used to sort and hence debug the key usage. -- cgit v1.2.3