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.
sed -n '3~3p' inputfile
[gray]# or[/gray]
awk '!(NR%3)' inputfile
-n Suppress the default output.
n Copy the pattern space to the
standard output if default
output is not suppressed
Replace the pattern space with
the next line of input.
p Print. Copy the pattern space
to the standard output.