nushell/docs/commands/sort-by.md
Justin Ma c0a1d18e3d
update #4455, regenerate commands' docs and update make_docs script (#4586)
* feat: update #4455, regenerate commands' docs

* chore: update make_docs script
2022-02-21 11:26:00 -06:00

820 B

title layout version
sort-by command 0.59.0

Sort by the given columns, in increasing order.

Signature

> sort-by ...columns --reverse --insensitive

Parameters

  • ...columns: the column(s) to sort by
  • --reverse: Sort in reverse order
  • --insensitive: Sort string-based columns case-insensitively

Examples

sort the list by increasing value

> [2 0 1] | sort-by

sort the list by decreasing value

> [2 0 1] | sort-by -r

sort a list of strings

> [betty amy sarah] | sort-by

sort a list of strings in reverse

> [betty amy sarah] | sort-by -r

Sort strings (case-insensitive)

> echo [airplane Truck Car] | sort-by -i

Sort strings (reversed case-insensitive)

> echo [airplane Truck Car] | sort-by -i -r