Filter Matching String Lines in Batch -
i'm trying force text output ignore lines. current command is:
type "c:\file.txt" | findstr "company:
and outputs with:
company: company: company: company: company1 company: company2 company: company3 company: company: company:
is possible ignore blank lines? i've tried findstr /v "company:
, removes everything. :(
what want output is:
company: company1 company: company2 company: company3
Comments
Post a Comment