Files & Directories
Searching
# cmd only
where cmd.exewhere /R c:\users\ text.txt# cmd only
find "string" file.txt
# lines that do NOT match
find /V "string" file.txt
# case insensitive
find /I "string" file.txt
# display line numbers
find /N "string" file.txtfindstr "name" test.txtSorting
Comparing
Last updated