Stefan Keul <[EMAIL PROTECTED]> writes:

> ich habe h�sslicher Weise Datei- und Verzeichnisnamen mit Leerzeichen. 
> Ich m�chte zB einfach alle Verzeichnisse chmod +x machen. Was ich so 
> probiert habe:
> 
> chmod +x $(find . -type d )
> chmod +x $(find . -type d -print0)
> chmod +x $(find . -type d -print)
> chmod +x $(find . -type d -printf "'%f'\n")
> chmod +x $(find . -type d -printf "\"%f\"\n")

find . -type d -exec chmod +x \{} \;
find . -type d -print0 | xargs -0 chmod +x


HTH

 Heike


-- 
Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject "unsubscribe". Probleme? Mail an [EMAIL PROTECTED] (engl)

Antwort per Email an