hallo,
find /opt/jakarta-tomcat-5.0.19/webapps/TrackStudio -exec chown -v root:root {} ;
fehlendes argument für exec
was ist hier falsch ?
gruesse rene
find -exec ??
Da fehlt der Backslash vor dem Semikolon am Ende:
Da Du allerdings keinerlei Suchkriterien zum find() angibst, koenntest Du auch einfach folgendes machen:
Code: Alles auswählen
find /opt/jakarta-tomcat-5.0.19/webapps/TrackStudio -exec chown -v root:root {} \;
Code: Alles auswählen
chown -R root.root /opt/jakarta-tomcat-5.0.19/webapps/TrackStudio