Quick linux tip for grepping for multiple words at the same time. Use the -e option for each pattern that you want to match. If you wanted to search for all files containing either *html* or *script*:
grep -e html -e script *
A Software Blog from Marcos Savoury
Quick linux tip for grepping for multiple words at the same time. Use the -e option for each pattern that you want to match. If you wanted to search for all files containing either *html* or *script*:
grep -e html -e script *