#!/bin/awk -f BEGIN { ln=0 } { ln++ if (ln%2 == 0) next print $0 }