awk print between lines when "/" is part of the name
1
vote
3
answers
367
views
I need to print lines between those that contain a "/" in the name.
I tried with:
awk '/+SOLUTION/ESTIMATES/,/-SOLUTION/ESTIMATES/' $F > fil$F
and
awk '/+SOLUTION"/"ESTIMATES/,/-SOLUTION"/"ESTIMATES/' $F > fil$F
and
awk '/"{+SOLUTION/ESTIMATES}"/,/"{-SOLUTION/ESTIMATES}"/' $F > fil$F
but the error is always more or less the same like "unterminated string".
How can I print lines between those patterns?
Asked by euge1780
(23 rep)
Nov 25, 2023, 04:42 PM
Last activity: Nov 26, 2023, 06:37 PM
Last activity: Nov 26, 2023, 06:37 PM