On Tue, 20 Jan 1998, George Bonser wrote: > The problem is that GNU tar does not understand: > > (cd somedir; tar cf - .)|(cd otherdir; tar -xf -) Maybe you should try it with the -C option? (cd somedir; tar cf - .) | tar -xf -C <otherdir> -