Sorry about the dummy question here.
Under Windows I would like to be able to filter one .txt file into a new one. Filtering all lines that contain a specific string.
I know this could well be a really easy one, but would really appreciate a few pointers please.
Use the
findstrcommand:findstr /?will give you a usage message telling you how to usefindstr(including the/Vswitch if you wanted to filter lines out rather than filtering them in.)Or if you’re familiar with
grepand wishing you had it on Windows, install Cygwin. 🙂