Suppose I do
grep "MyVariable = False" FormA.frm
... result1
grep "MyVariable = True" FormA.frm
... result2
How to write the grep command so that I can say something like
grep "MyVariable = False" OR "MyVariable = True" FormA.frm
Var1 = False
ANDVar2 = True
? Or whether a file containsVar1 = False
ANDVar2 = True
? Or something else? An example would help. – Mikel Mar 28 '12 at 15:40