LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Alphabetical Listing of Text (https://www.linuxquestions.org/questions/linux-software-2/alphabetical-listing-of-text-157130/)

trihai44100 03-13-2004 11:11 AM

Alphabetical Listing of Text
 
I have a text file with the names of a bunch of people. How can I make it so that they are listed alphabetically from their last name?

For example:
George Washington
George Bush
Richard Nixon

I want that to become:
George Bush
Richard Nixon
George Washington

Mingus Rockbutt 03-13-2004 11:34 AM

providing everyone has only a first and a surname just use
Code:

sort +1 filename
, or to confuse the issue,
Code:

sort -k 2 filename'
(both sort using the second field in the text).

Mingus


All times are GMT -5. The time now is 09:51 AM.