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 '1~3h;3~3{H;g;s/\n/ /;p}' /input/file
1~3 [gray]# start on line [b]1[/b], repeat for each [b]3[/b]rd[/gray]
h [gray]# copy pattern space to [b]h[/b]old space[/gray]
3~3 [gray]# start on line [b]3[/b], repeat for each [b]3[/b]rd[/gray]
{ [gray]# do the following...[/gray]
H [gray]# append patter space to [b]H[/b]old space[/gray]
g [gray]# copy hold space to pattern space[/gray]
s/\n/ / [gray]# [b]s[/b]ubstitute newline character with space[/gray]
p [gray]# [b]p[/b]rint the current pattern space[/gray]
} [gray]# ...do until here[/gray]