informatique:outils:awk:afficher_toutes_les_trois_lignes_d_un_fichier
Afficher toutes les trois lignes d'un fichier
- En commençant à la première ligne
awk '(NR%3 == 1){print $0}'
- En commençant à la deuxième ligne
awk '(NR%3 == 2){print $0}'
- En commençant à la troisième ligne
awk '(NR%3 == 0){print $0}' # Syntaxe alternative awk '(NR%3){print $0}'
informatique/outils/awk/afficher_toutes_les_trois_lignes_d_un_fichier.txt · Dernière modification : 2025/01/02 09:23 de alexis