Answers for "windows cat grep equivalent"

3

grep in windows

Use findstr in Windows with following command line structure:
findstr [/I] [/S] "substring" "regex_file_name"
/I   Case-insensitive search.
/S   Search files in subfolders recursively.
Posted by: Guest on October-17-2020
0

windows cat grep equivalent

Use cat with find in Windows PowerShell
cat [Filename] | find "search"
Posted by: Guest on October-22-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language