CPU : awk 'NR % 3' # Affiche toutes les lignes sauf les modulos de 3 awk 'NR > 3' # Affiche toutes les lignes supérieur à 3 awk 'NR >= 3' # Affiche toutes les lignes supérieur ou égale à 3 awk '$2 == "a"' # Affiche toutes les lignes ayant aa comme deuxième champ awk 'NF >= 3' # Affiche toutes les lignes ayant ayant au moins 3 champs awk '/foo/ && /bar/' # Affiche les lignes qui matchent foo et bar awk '/foo/ && !/bar/' # Affiche les lignes qui matchent foo et mais pas bar awk '/foo/ || /bar/' # Affiche les lignes qui matchent foo ou bar awk '/foo/,/bar/' # ?? awk 'NF' # Affiche les lignes non vides awk 'NF--' # ?? awk '$0 = NR" "$0' # Affiche les lignes suffixés du numéro awk '!a[$0]++' # Affiche le fichier sans les doublons