awk '(NR%3 == 1){print $0}'
awk '(NR%3 == 2){print $0}'
awk '(NR%3 == 0){print $0}' # Syntaxe alternative awk '(NR%3){print $0}'