grep -Fx ABB.log a.tmp
From the grep man page:
-F, –fixed-strings
Interpret PATTERN as a (list of) fixed strings
-x, –line-regexp
Select only those matches that exactly match the whole line.
grep -Fx ABB.log a.tmp
From the grep man page:
-F, –fixed-strings
Interpret PATTERN as a (list of) fixed strings
-x, –line-regexp
Select only those matches that exactly match the whole line.