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.
BEGIN { target = "KnownString" }
/^\+/ { sub( /^\+/, "" ); line = line $0 ; next }
{ process( line )
line = $0
}
END { process( line ) }
function process( line )
{
split( line, ary, /[ \t]+/ )
for (i=1; i in ary; i++)
{ if (target == ary[i])
print ary[i+1]
}
}