1
vote
2answers
179 views

Sort each standalone line alphabetically

I want to sort some items in alphabetic order, but in a very specifc way. I have, for example, the following list, each item separated by comma: monkeys, big dogs, cats pineapple, banana, orange ...
0
votes
3answers
154 views

How can I sort a document according to a substring in each line on Win7?

How can I sort a text according to hashtag on Windows-7? I have a long text (.txt format) which looks something like this: Blah blah #Test 123123 #Really Blah bluh #Really klfdmngl #Test I would ...
1
vote
1answer
199 views

How do I re-sort a list of files grouped by directory?

From within a DOS batch file, how can I crudely re-sort a text file containing a manually maintained list of source files, so those files listed (from the same directory) in the small example extract ...
1
vote
1answer
287 views

Sort text file of blocks

There are plenty of tools that will sort a text file on the assumption that the unit of interest is the line, but are there any that work on blocks? Example: name = Mercury order = 1 mass = 0.06 ...
1
vote
6answers
550 views

Best way to manually sort random text files?

I have about 1000 text files and I need to view each, and move it to a folder if it's the correct one. I can only do basic sorting by length/size, and I can't grep because the text is random. How can ...