in reply to Perl on windows, one-liners with wildcards/glob

If you could install MSYS (or perl power tools), you could do:
dir /x /b *.txt *.doc | xargs perl -pi.bak -e "s/vanilla/strawberry/gi +"
(update: which breaks on files with spaces unless you use the /x)