Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SASS VUE GEN AI SCIPY CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING BASH

Bash sort - Sort Lines of Text Files

Using the sort Command

The sort command is used to sort lines of text files.

It's a handy tool for organizing data in files.


Basic Usage

To sort a file, use sort filename:

Example

sort fruits.txt
apples,1
bananas,2
bananas,4
kiwis,3
kiwis,3
oranges,20

Options

The sort command has options to change how it works:

  • -r - Sort in reverse order
  • -n - Sort numbers correctly
  • -k - Sort by a specific column
  • -u - Remove duplicate lines
  • -t - Specify a delimiter for fields

Sort in Reverse Order

The -r option allows you to sort in reverse order.

Without this option, sort arranges lines in ascending order.

Example: Sort in Reverse Order

sort -r fruits.txt
oranges,20
kiwis,3
kiwis,3
bananas,4
bananas,2
apples,1

Specify a Delimiter for Fields

The -t option specifies a delimiter for fields, which is useful for sorting files with a specific field separator.

Without this option, sort assumes whitespace as the default delimiter.

Example: Specify a Delimiter for Fields

sort -t "," -k2,2 fruits.txt
apples,1
bananas,2
oranges,20
kiwis,3
kiwis,3
bananas,4

This example also uses -k to sort by the second column.


Sort by a Specific Column

The -k option allows you to sort by a specific column.

Without this option, sort uses the entire line as the key.

Example: Sort by a Specific Column

sort -t "," -k2,2 fruits.txt
apples,1
bananas,2
oranges,20
kiwis,3
kiwis,3
bananas,4

Sort Numbers Correctly

The -n option allows you to sort numbers correctly.

Without this option, numbers are sorted lexicographically, meaning "10" would come before "2".

Example: Sort Numbers Correctly

sort -t "," -n -k2,2 fruits.txt
apples,1
bananas,2
kiwis,3
kiwis,3
bananas,4
oranges,20

Remove Duplicate Lines

The -u option removes duplicate lines from the output. Without this option, duplicate lines are retained.

Example: Remove Duplicate Lines

sort -u fruits.txt
apples,1
bananas,2
bananas,4
kiwis,3
oranges,20

Complex Sorting

Sort can perform complex sorting tasks. For example, sort -t "," -k1,1 -k2,2r fruits.txt sorts by the first column, and then by the second column in reverse order.

Example: Complex Sorting

sort -t "," -k1,1 -k2,2r fruits.txt
apples,1
bananas,4
bananas,2
kiwis,3
kiwis,3
oranges,20


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.