Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
github-hash-search/compare_search_methods.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
11 lines (9 sloc)
440 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "parallel grep" | |
echo "=============" | |
time cat hashes_to_find.txt | xargs -P4 -I{} grep ^{} $1 | |
echo "egrep" | |
echo "=====" | |
time grep -E `cat hashes_to_find.txt | python -c "import sys; print('|'.join('^' + line.strip() for line in sys.stdin))"` $1 | |
echo "fgrep" | |
echo "=====" | |
time grep -F "`cat hashes_to_find.txt`" $1 | grep -E `cat hashes_to_find.txt | python -c "import sys; print('|'.join('^' + line.strip() for line in sys.stdin))"` |