sort: Sort Lines of Text Files
August 12th, 2024 2:01 PM Mr. Q Categories: Command
Description:
The sort
command sorts lines of text files in ascending or descending order based on specified criteria. By default, it sorts lines alphabetically.
Command:
Copy001sort [options] file
Sample Input
file.txt
:
Copy001apple
002orange
003banana
004grape
Sample Output (Default Sorting):
Copy001apple
002banana
003grape
004orange
Options:
-r
: Sort in reverse order.-n
: Sort numerically (useful for sorting numbers).-k
: Sort based on a specific field or column.-u
: Output only unique lines.-t
: Specify a delimiter for fields (used with-k
).
Example with -r
Option:
To sort lines in reverse order:
Copy001sort -r file.txt
Sample Output with -r
:
Copy001orange
002grape
003banana
004apple
Example with -n
Option:
To sort numerically (useful when sorting numeric data):
Copy001sort -n numbers.txt
Sample Input numbers.txt
:
Copy00110
0022
00333
00422
Sample Output with -n
:
Copy0012
00210
00322
00433
Example with -k
Option:
To sort based on a specific field, you need to specify the delimiter and field:
Copy001sort -t, -k2 file.csv
Sample Input file.csv
:
Copy001John,30
002Alice,25
003Bob,28
Sample Output with -t, -k2
:
Copy001Alice,25
002Bob,28
003John,30
Example with -u
Option:
To sort and remove duplicate lines:
Copy001sort -u file.txt
Sample Output with -u
:
Copy001apple
002banana
003grape
004orange
Example with -t
Option:
To specify a delimiter (for sorting CSV or tab-delimited files):
Copy001sort -t$'\t' -k1 file.tsv
Sample Input file.tsv
:
Copy001apple\t2
002banana\t1
003orange\t3
Sample Output with -t$'\t' -k1
:
Copy001apple\t2
002banana\t1
003orange\t3
The sort
command is highly versatile and useful for organizing text data in a meaningful way.