[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [gulliver] atelier Bash - spécifications Posix


From Jean-Yves Boisiaud <jyblst at erasys dot fr>
Subject Re: [gulliver] atelier Bash - spécifications Posix
Date Sun, 15 Oct 2006 19:08:36 +0200

Gilles LAMIRAL wrote:
Bonjour,

juste pour chipoter ;-) :
tar cf - repertoire | (cd /repertoire/de/destination && tar xvf -)

Idem. Pourquoi dépenser un sous-processus...


tar cf - repertoire | { cd /repertoire/de/destination && tar xvf - ; }
^

A quoi sert le ';' ?