I have text file like (the specific part of the whole file);
! lat long elev (m)
! 44.5199005 11.6468000 50.4276
I need to extract second line and save them in another text file. The numbers are variable and "!" syntax is also exist several times in the text. For the first line there is always 8 spaces between "!" and "lat" but this is not the case for the second line. Is there any command available to allow me to extract next line after grep "! lat" text
grep
? – muru Oct 23 '15 at 12:03