summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorCojocaru Alexandru <xojoc@gmx.com>2013-05-07 13:47:15 +0100
committerPádraig Brady <P@draigBrady.com>2013-05-08 11:51:37 +0100
commit465f9512b710ee2fe03c3caf65bfdccdce3544ae (patch)
tree1b5841631312dfed1169715b7ad287fe448b771a /scripts
parentb54b47f954c9b97bdb2dbbf51ead908ccb3a4f13 (diff)
downloadcoreutils-465f9512b710ee2fe03c3caf65bfdccdce3544ae.tar.xz
cut: improve performance, especially with --output-delimiter
Use a sentinel value that's checked implicitly, rather than a bit array, to determine if an item should be output. Benchmark results for this change are: $ yes abcdfeg | head -n1MB > big-file $ for c in orig sentinel; do src/cut-$c 2>/dev/null echo -ne "\n== $c ==" time src/cut-$c -b1,3 big-file > /dev/null done == orig == real 0m0.049s user 0m0.044s sys 0m0.005s == sentinel == real 0m0.035s user 0m0.032s sys 0m0.002s ## Again with --output-delimiter ## $ for c in orig sentinel; do src/cut-$c 2>/dev/null echo -ne "\n== $c ==" time src/cut-$c -b1,3 --output-delimiter=: big-file > /dev/null done == orig == real 0m0.106s user 0m0.103s sys 0m0.002s == sentinel == real 0m0.055s user 0m0.052s sys 0m0.003s eol_range_start: Removed. 'n-' is no longer treated specially, and instead SIZE_MAX is set for the 'hi' limit, and tested implicitly. complement_rp: Used to complement 'rp' when '--complement' is specified. ADD_RANGE_PAIR: Macro renamed to 'add_range_pair' function. * tests/misc/cut-huge-range.sh: Adjust to the SENTINEL value. Also remove the overlapping range test as this is no longer dependent on large ranges and also is already handled with the EOL-subsumed-3 test in cut.pl.
Diffstat (limited to 'scripts')
0 files changed, 0 insertions, 0 deletions