Re: "Unreadable path encountered" running svn merge --reintegrate
From: Ryan Schmidt <subversion-2010b_at_ryandesign.com>
Date: Wed, 19 May 2010 20:57:25 -0500
On May 19, 2010, at 15:10, Brown, Beverly wrote:
> One question - could this have anything to do with filenames that have
That's because find and xargs won't work with files with spaces in their names unless you tell them to use something other than the space as their default delimiter, for example the null character:
find . -type f -print0 | xargs -0 sum > /dev/null
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.