Showing posts with label sort. Show all posts
Showing posts with label sort. Show all posts

Monday, June 14, 2010

sort a delimited file on the basis of a column

sort -t":" -k3 filename.txt

(The above will sort a file filename.txt which is ":" delimited on the basis of third column.)