Redirect windows grep output
Problem
Redirect "grep pattern file > output.txt" after grep command is not working as grep considers all text after pattern as input file namesSolution
Put redirection before grep command and separate with ";"Example:
1>output.txt;grep pattern file
Comments
Post a Comment