On Tue, Mar 29, 2005 at 01:56:14AM -0500, Brian K. White wrote: [snip] > >( cd srcdir ; tar cf - . ) | ( cd destdir ; tar xpf - ) > > All the first perens does is leave you sitting wherever you were before > starting, whereas my example would have left you sitting in srcdir. > It makes no functional difference in the tar/untar job itself. Not quite; without the first set of parentheses, destdir is interpreted relative to srcdir. Unless srcdir are meant as symbolic values and dstdir has an absolute value, in which case this is not an issue. $ cd $HOME $ pwd /home/jos $ (cd /; pwd 1>&2) | (cd /usr; pwd) / /usr $ pwd /home/jos $ (cd /; pwd 1>&2) | (cd usr; pwd) cd: can't cd to usr /home/jos / $ pwd /home/jos $ cd /; pwd 1>&2 | (cd usr; pwd) / /usr $ pwd / $ Note: /home/jos/usr doesn't exist. -- Jos Backus jos at catnook.comReceived on Tue Mar 29 2005 - 16:47:46 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:38:30 UTC