![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| 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 |
| sort columns by field | kamel.seg | Shell Programming and Scripting | 4 | 02-20-2008 02:50 AM |
| how to numeric sort on field time | rahulspatil_111 | Shell Programming and Scripting | 1 | 04-27-2007 08:52 AM |
| Sort - only one field appears in output? | miwinter | UNIX for Dummies Questions & Answers | 1 | 07-24-2006 07:47 AM |
| field separator as regexp | Abhishek Ghose | Shell Programming and Scripting | 2 | 02-15-2006 04:49 PM |
| how to include field separator if there are blank fields? | ReV | Shell Programming and Scripting | 19 | 07-13-2005 01:50 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
| Forum Sponsor | ||
|
|
|
||||
|
Thanks for the quick reply, but that doesn't seem to work. Here's a sample input file where I've converted the tabs to vertical bars:
a album|c song|2 b album|d song|2 a album|a song|4 a album|b song|1 b album|z song|1 b album|a song|3 a album|f song|3 b album|c song|4 (The real file is an exported playlist from iTunes. This is a simplified test version.) I want to sort by album, then track number. With this file, sort -t\| -k 1,1 -k 3,3n works fine. But with the real file that contains tabs, nothing works. I tried sort -t `/bin/echo '\t'` -k 1,1 -k 3,3n but it sorts by the entire line just like everything else I've tried. |