Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'An AppleScript to modify user permissions' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
An AppleScript to modify user permissions
Authored by: taxi on Mar 12, '05 05:59:54AM

The command I use to change owner is:

find ~shared/Music -not -user shared -exec chown shared:admin {} \;

The command to change permissions:

find ~shared/Music -type d -not -perm 775 -exec chmod 775 {} \;



[ Reply to This | # ]