Re: tail head

Page principale

Répondre à ce message
Auteur: michel buonomo
Date:  
À: guilde
Sujet: Re: tail head

Le 18/03/2022 à 19:57, Patrick Dupre a écrit :
> En fait, je fais
> a.out|head -n5 ; a.out | tail -n5


Bonjour,

avec awk ?

HEAD=7;TAIL=5;

./a.out | awk "NR<=$HEAD {print \$0} {l[NR] = \$0} END {for (i=NR-$TAIL;
i<=NR; i++) print l[i]}"

MicheL