mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 15:37:59 +00:00
16 lines
269 B
Text
16 lines
269 B
Text
% cat piped.sh
|
|
mlr cut -x -f i,y data/big | mlr sort -n y > /dev/null
|
|
|
|
% time sh piped.sh
|
|
real 0m2.828s
|
|
user 0m3.183s
|
|
sys 0m0.137s
|
|
|
|
|
|
% cat chained.sh
|
|
mlr cut -x -f i,y then sort -n y data/big > /dev/null
|
|
|
|
% time sh chained.sh
|
|
real 0m2.082s
|
|
user 0m1.933s
|
|
sys 0m0.137s
|