habe ein weiteres Problem und finde nur sehr unelegante Lösungen
Meine Datei hat folgenden Aufbau:
Code: Alles auswählen
(...)
xyz Hallo
Bla
Blubb
Bla
MoinMoin
xyz Hallo0815
(...)
Jemand eine Anregung für mich?
Wäre sehr dankbar
Code: Alles auswählen
(...)
xyz Hallo
Bla
Blubb
Bla
MoinMoin
xyz Hallo0815
(...)
Code: Alles auswählen
/^xyz Hallo$/ {
found = 1;
next;
}
/^xyz Hallo0815/ && found {
found = 0;
next;
}
{
if (found) {
print $0;
next;
}
}