Outils pour utilisateurs

Outils du site


informatique:linux:awk

Ceci est une ancienne révision du document !


AWK

Quelques liens sur l'utilisation de awk

Tutoriels

Affiche la 9eme colonne, s'il y a 9 colonnes:

awk '{if (NF == 9) {print $9}}' file.txt

Affiche les 8 premiers caracteres du premier champs

awk '{print substr($1,1,8)}' file.txt
informatique/linux/awk.1190820817.txt.gz · Dernière modification: 2018/09/06 19:00 (modification externe)