Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: problem sorting by non-consecutive fields

by graff (Chancellor)
on Apr 08, 2004 at 03:55 UTC ( [id://343490]=note: print w/replies, xml ) Need Help??


in reply to problem sorting by non-consecutive fields

Others have posted appropriate perl solutions to your sorting problem, which should be helpful -- and may even point to things you can do with perl that you can't do on the command line with the unix "sort" utility.

And folks are right -- this is a perl site, not a unix tool site (even though perl counts in many ways as a tool for unix users). Still, I can't resist pointing out that you are using the wrong options on the unix sort command line -- I think it would work as you intended if done like this:

sort -k 3,3 -k 1,1n file
Reading all the way through the unix man page for "sort" should explain how the "-k" option is used. (Note that column indexes for "-k" start at 1, not at 0.)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://343490]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-18 08:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found