Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
awk '
# pattern found, empty saved line, read an extra line
# so it is skipped
/FRM CHK 000000/{x="";getline;next}
# if a line has been previously saved, print it and save
# the current one
{if(x)print x;x=$0}
# end of input, print the last saved line
END{if(x)print x}
' filename