[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-tar] errors with some paths/filenames in null-separated file-li
From: |
Sergey Poznyakoff |
Subject: |
Re: [Bug-tar] errors with some paths/filenames in null-separated file-list |
Date: |
Mon, 17 Jan 2005 10:55:42 +0200 |
address@hidden wrote:
> all problematic filenames/paths includes newlines, but newline only is
> not the cause.
It's a coincidence, the newline is not needed to trigger the bug.
The real reason are backslash caracters: by default tar "unquotes"
the filenames it reads with -T option, i.e. it translates
backslash+char combinations to single char (\n -> newline,
\t -> tab, etc.). However, output produced by find (both -print0
and -print) does not need such processing. I will add a
--no-unquote option to handle such cases.
Thank you for reporting the issue.
Regards,
Sergey