Wort suchen -> ganze Zeile löschen
Wort suchen -> ganze Zeile löschen
hi ich möchte in einer datei nach einem wort suchen, dann aber die ganze zeile löschen
Re: Wort suchen -> ganze Zeile löschen
Code: Alles auswählen
fgrep -v wort dateiname > neuer-dateiname
Re: Wort suchen -> ganze Zeile löschen
sed -e '/DASWIRDGELOESCHT/d' eingabe.txt > ausgabe.txt
,___,
{o,o}
|)__)
-"-"-
O RLY?
{o,o}
|)__)
-"-"-
O RLY?
Re: Wort suchen -> ganze Zeile löschen
Mit dem Schalter -i in sed sollte es funktionieren.
Beispiel:
Beispiel:
Code: Alles auswählen
daniel@daniel-laptop:/tmp$ sed -e '/WORT/d' test
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
daniel@daniel-laptop:/tmp$ cat test
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein WORT und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein WORT und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
daniel@daniel-laptop:/tmp$ sed -ie '/WORT/d' test
daniel@daniel-laptop:/tmp$ cat test
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
ein wort und noch ein wort
Oh, yeah!