open( IN, "cut -d, -f13-15 numbers.csv |" ); while () { chomp; @row = split /,/; # this is only cols 13, 14, 15 from numbers.csv # and now, do something }