http://www.perlmonks.org?node_id=448582


in reply to Re^3: cut vs split (suggestions)
in thread cut vs split (suggestions)

I was curious about the auto-detect in cut. So I tested it in on my machine again

[sk]% time cut -d, -f"1-15" numbers.csv > junk 5.630u 0.260s 0:06.12 96.2% [sk]% time cut -d, -f"1-15" numbers.csv > /dev/null 5.620u 0.030s 0:05.65 100.0%
I guess Pustular must be on a really fast machine :) -SK

Replies are listed 'Best First'.
Re^5: cut vs split (suggestions)
by tlm (Prior) on Apr 17, 2005 at 05:22 UTC

    Don't I wish! I just have a faster cut; my numbers for the Perl scripts are comparable to yours.

    the lowliest monk

      I just have a faster cut; my numbers for the Perl scripts are comparable to yours.
      That's right...duh :)

      Edit by tye: Remove PRE tags