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.
#!/bin/awk -f
# find the match
/^\^/ {
print l1
print l2
}
# record the previous two lines
{
l1 = l2
l2 = $0
}
# end
awk -f myscript file.txt