Hugo Mildenberger <[email protected]> ha escrit:

> I've found no way to stop tar from expanding the "./" entry.

Use either

   tar --strip=1 -xf some-archive.tar

or

   tar -xf some-archive.tar --no-wildcards --no-recursive --exclude .


To avoid storing '.' in the archive use:

   find .  -not -name '.' | tar cfT some-archive.tar -

   
Regards,
Sergey

Reply via email to