On an OS X server, I have some documents in /Users/me/Documents/here/
Permissions to /Users/me/Documents is set to drwxrwxr--.
Permissions to /Users/me/Documents/here is set to drwxrwxr-x.
I want to allow other users to access only the contents of here/ within Documents (so I don't have to copy the whole thing to my Public directory). For this I have tried
cd /Users/me/Public
ln -s /Users/me/Documents/here here
I can of course access here/ through my Public directory, but others users cannot. Is there a way to enable this while keeping everything else in /Users/me/Documents private?
