01-11-07 06:24 PM
I'm creating a security script to find all email addresses on a disk volme.
I
have the recursive for loop working but findstr is ignoring my escaped
character.
for /r "c:\" %a in (*.) do grep \w[@]\w * %a
works but when I escape the . for the .com
for /r "c:\" %a in (*.) do grep \w[@]\w\.com * %a
it fails.
Please help
[ Post a follow-up to this message ]
|