Skip to content

sort

  • Sorts in alphabetical order
# alphabetically
sort "file"

# numerically
sort -n "file"
sort --numeric-short "file"

# reverse
sort -r "file"

# key
sort -k "2" "file" # Sort by the second column
sort --key "2" "file"