BiLE-weigh.pl gives sort: open failed: +1: No such file or directory – error

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:, ,

~ by princ3 on May 27, 2007.

One Response to “BiLE-weigh.pl gives sort: open failed: +1: No such file or directory – error”

  1. 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

Leave a Reply