I want to find some words from a file. I use grep command on linux.
grep "word1" original.file
But there are lots of words to find and they are in "words.file" If it is possible I want to give parameter to grep command. I will give words which are in the "words.file" to the grep command as parameters and find these words in the "original.file"
Can I do that ?
