Re-
Le 12/05/2020 à 20:51, Pierre ESTREM (via linux-31 Mailing List) a écrit :
>
> Si j'utilise le schéma :
>
> ... | while read Sink
> do
> action 1
> read ...
> action 2
> done
Ou bien privilégier cette syntaxe :
while read Sink
do
action 1
read ...
action 2
done < <(la commande avant le pipe)
;-))