franki> When it runs, it errors on alot of directorys because some of
    franki> the old web sites have spaces in their directory or file names..

Franki,

Try using the printf action of the find command to quote the file names:

    find . -type d -printf "'%p'\n" | xargs chmod 755
    find . -type f -printf "'%p'\n" | xargs chmod 644

-- 
Skip Montanaro ([EMAIL PROTECTED])
(847)971-7098

Reply via email to