LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Alphabetizing a list of items not possible in text editor? (https://www.linuxquestions.org/questions/linux-software-2/alphabetizing-a-list-of-items-not-possible-in-text-editor-302600/)

jon_k 03-16-2005 11:49 PM

Alphabetizing a list of items not possible in text editor?
 
I've got a list of many items (1000+ items) and I need them to be alphabetized in my text editor. e.g.

Turning a list such as

dog
cat
pen
coat

to:

cat
coat
dog
pen <<< --- alphabetized result


All of the text editors I've tried including:
* kate
* kwrite
* kedit
* gedit

Do NOT support this feature!

Is there any way I could find a text editor that does, or a bash script or shell command that could do this?

Thanks!

Matir 03-17-2005 12:00 AM

man sort. :)

cat FILE | sort > FILE2

The sort manpage will give you all the options you could want. :)


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