I have a input:
achil 1 234671.82694245825 234671.82694245825 0.43995134290095084
achil 2 234671.82694245825 234671.82694245825 0.43995134290095084
o 0 1 0 1 1 5.732820000 0.000 = PERIOD(0)
4
5
6
1
2
I would like to print from line with o 0 1 0 1 1 5.732820000 0.000 = PERIOD(0)
to end of the file.
Desired output:
o 0 1 0 1 1 5.732820000 0.000 = PERIOD(0)
4
5
6
1
2
I tried:
awk '/o 0\s+1 0 1 1\s+5.732820000\s+0.000 = PERIOD(0)/,/*/' input > output
and the output is an empty file. What is wrong please?