OS: Ubuntu 12.04
I have a directory what has given write permission to group foo
. Two users bar
and baz
are part of the group. Both can successfully write files to the directory. However, baz
cannot overwrite a file (i.e. create a file with the same name) that was written by bar
. I'm doing the file I/O through Python (csv module), but I don't think that has anything to do with this problem.
How do I set permissions so that bar
and baz
can overwrite eachother's files in the foo
directory?
Thanks.