View Single Post
Old 25th Aug 2019, 9:32 pm   #12
arjoll
Dekatron
 
arjoll's Avatar
 
Join Date: May 2006
Location: Invercargill, New Zealand
Posts: 3,457
Default Re: Word in file search utility, DOS

Quote:
Originally Posted by brenellic2000 View Post
Back agin! Been playing with the FIND command but while it works fine entering a single, known file name, it doesn't handle a batch of files, or wild cards... but it does the job, laboriously, for my immediate needs.
Try something like:
Code:
for %f in (*.doc) do find /n /i "text" %f
arjoll is offline