Since you didn’t provide any details, here is the boiler plate.
$ sed -n '/start/,/end/p' file > outputfile
or
$ awk '/start/,/end/' file > outputfile
3
solved Script to grep on range of start/end text [closed]
Since you didn’t provide any details, here is the boiler plate.
$ sed -n '/start/,/end/p' file > outputfile
or
$ awk '/start/,/end/' file > outputfile
3
solved Script to grep on range of start/end text [closed]