Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
grep
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
pieter_parker
Veteran
Veteran


Joined: 07 Aug 2006
Posts: 1488
Location: 127.0.0.1

PostPosted: Sun Jan 20, 2008 2:33 am    Post subject: grep Reply with quote

Code:

grep -a -B50 -A50 "heute regnet es"/home/pieter/text/tollertext.txt >/tmp/regen.txt

so kann ich die datei /home/pieter/text/tollertext.txt mit grep durchlaufen lassen und grep speichert 50zeilen vor und 50zeilen nach der stelle wo "heute regnet es" steht in die datei /tmp/regen.txt
das funktioniert soweit...

aber wie kann ich grep nach "morgen schneit es" _und_ "gestern war es windig" gleichzeitig suchen lassen und diese ergebnisse (auch jeweils mit 50 vor und 50 zeilen nach der stelle) in schneit.txt und wind.txt speichern lassen, mit nur 1nem durchlauf
1 durchlauf ist wichtig weil die datei auf die ich es anwenden will sehr gross ist und es kostet sonst zuviel zeit
Back to top
View user's profile Send private message
Necoro
Veteran
Veteran


Joined: 18 Dec 2005
Posts: 1912
Location: Germany

PostPosted: Sun Jan 20, 2008 2:49 am    Post subject: Reply with quote

du könntest beide zusammen durchlaufen lassen und beides erstmal in eine Datei schreiben und diese datei denn nochmal durchlaufen ...

also
Code:
egrep -a -C50 "(X)|(Y)" die_datei > zusammen && grep -a -C50 "X" zusammen > xdatei && grep -a -C50 "Y" zusammen > ydatei

Hinweise:
-Cx ist Kurzform für -Ax -Bx
-ich hab egrep benutzt um die Klammern und das | nicht escapen zu müssen :)
_________________
Inter Deum Et Diabolum Semper Musica Est.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum