check if a file contains a word and in which ine code example
Example: bash if file contains string
if grep -q SomeString "$File"; then
Some Actions # SomeString was found
fi
if grep -q SomeString "$File"; then
Some Actions # SomeString was found
fi