Hi all, I want to find out the following pattern in all of my source files recursively the current directory. pattern is \\\t e.g. my source file contain : add r0 r1 \ (After \ there is actual tab character) How I can do that. I tried grep -r "\\\t" * But It could not find out the above pattern. Thanks in advance, -Bansidhar