Tuesday, July 23, 2019

[solved]grep -w: no such file or directory

I mistakenly put grep -f -w <query key file> <query file>

The grep command has to put query key file immediately after -f
So the correct command is:
grep -w -f <query key file> <query file>

No comments:

Post a Comment