![]() |
|
|
|
|
|||||||
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to sort alphabetically after finding values | doubleminus | UNIX for Dummies Questions & Answers | 4 | 04-28-2008 03:45 AM |
| Sort a file line by line alphabetically | H2OBoodle | Shell Programming and Scripting | 11 | 02-11-2008 03:27 AM |
| sort csv file | mozart | Shell Programming and Scripting | 6 | 02-10-2008 11:49 PM |
| how to sort the file in specified folder | maximas | Shell Programming and Scripting | 0 | 10-07-2007 01:16 AM |
| how to sort a file | tao | UNIX for Dummies Questions & Answers | 2 | 03-24-2002 07:34 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Hi all.
I have 2 files like this: f1 A 10 B 80 C 9 f2 A 11 B 700 C 10 What I want is the concatenation of the two files sorted by name (alphabetically) and size (numerically), so the result should be like this: F3 (cat f1 f2 sorted) A 10 A 11 B 80 B 700 C 9 C 10 but the result I get when I do sort f1 f2 is: A 10 A 11 B 700 B 80 C 10 C 9 Thanks for your help. |
| Forum Sponsor | ||
|
|
| Thread Tools | |
| Display Modes | |
|
|