Advertisement
Hashim

Benchmarks for grep V2

Sep 25th, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. for i in {1..15}; \
  2. do \
  3. (time LC_ALL=C grep -i "ajndoandajskaskaksnaodnasnakdnaosnaond" "15gbfile.txt") 2>&1 |
  4. tee -a "../Tests/grep Test 1.txt"; \
  5. (time rg -i "ajndoandajskaskaksnaodnasnakdnaosnaond" "15gbfile.txt") 2>&1 |
  6. tee -a "../Tests/ripgrep Test 1.txt"; \
  7. (time LC_ALL=C grep -Fi "ajndoandajskaskaksnaodnasnakdnaosnaond" "15gbfile.txt") 2>&1 |
  8. tee -a "../Tests/grep -F Test 1.txt"; \
  9. done;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement