Simply change this line from:
`cat temp | sort -r -t “:” +1 -n > @ARGV[1].sorted`;
to:
`cat temp | sort -r -t “:” -k 1 -n > @ARGV[1].sorted`;
technorati tags:sort, perl, bile
~ by princ3 on May 27, 2007.
Posted in code, terminal
to make the earlier one work
should i have to install older versions of sort
Loganathan said this on October 10, 2007 at 5:35 am | Reply
Name
E-mail (private)
Website
Notify me of follow-up comments via email.
to make the earlier one work
`cat temp | sort -r -t “:” +1 -n > @ARGV[1].sorted`;
should i have to install older versions of sort