[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-tar] tar fails to correctly accept null delimited file names
From: |
Sergey Poznyakoff |
Subject: |
Re: [Bug-tar] tar fails to correctly accept null delimited file names |
Date: |
Fri, 10 May 2013 08:41:02 +0300 |
Phillip Susi <address@hidden> ha escrit:
> find foo -print0 | tar cf foo.tar -T - --null
That's wrong. You should place --null before -T:
find foo -print0 | tar cf foo.tar --null -T -
Both `--null' and `--no-null' options affect only options that follow
them in the command line.
Regards,
Sergey