I have some data like this
Data Table ABC
Data
Stop
Data
Data Stop
Data Foo
Data Foo
I am trying to setup an awk range for Table ABC until Stop in the same column. I have tried this so far
awk '/Table ABC/,/Stop/' q
Data Table ABC
Data
Stop
But I desire to get
Data Table ABC
Data
Stop
Data
Data Stop