What is Nostr?
Jan Schaumann /
npub1kvy…edh2
2023-11-10 15:06:31

Jan Schaumann on Nostr: Holy shit grep is slow. zcat file.xz | time perl -ne 'print if / none /' | wc -l ...

Holy shit grep is slow.

zcat file.xz | time perl -ne 'print if / none /' | wc -l
74368
0.09s real 0.04s user 0.01s system

zcat file.xz | time sed -n -e '/ none /p' | wc -l
74368
0.13s real 0.08s user 0.00s system

zcat file.xz | time awk '/ none / { print }' | wc -l
74368
0.10s real 0.05s user 0.01s system

zcat file.xz | time grep ' none ' | wc -l
74368
57.98s real 22.68s user 0.01s system
Author Public Key
npub1kvy8enal7npw9ct28tc53d4r5fl7q7a3ua3gku22z8jlyec37f3snmedh2