Wenns eine txt-Datei ist, machs mit findstr:
Code:
F:\TEMP>type z.txt
Dieses Forum ist super......................
Morgen ist.....................
aber doch.........
Morgen ......
xxxxx
F:\TEMP>findstr /v /b "Morgen " z.txt
Dieses Forum ist super......................
aber doch.........
xxxxx
F:\TEMP>