Você pode usar uma variável para rastrear se a linha anterior está presente ou não:
$ awk '
FNR % 3 == 1 {f = $0; next} # The first line keep in f, skip to next line
FNR % 3 && f {print f;print} # Previous line present, print it and current line
' <file
this line 1 no un1x
this lines 22 0
but not 1
THIS is not
Ou com sed
:
sed -ne 'N;/\n/p;N;d' <file