Is there way to determine what folders a user has privileges to? I know I can tell what groups they are a member of, but I need to know that when a user leaves that I have figured out which files they had access to so that I can evaluate whether the file should be deleted or kept and given to his/her replacement or supervisor.
The find command looks promising. I just took a quick look at the man page (as I need to get home for dinner). The only thing I didn’t see is a way to find if a particular user as an ACL for an item (which I realize isn’t what I asked, but should have).
I agree, but I haven’t figured it out yet. I was looking at doing something like an: ls -leR | grep username but it didn’t return the name of the file. I thought about adding grep -B 1 username, but the username may not always be the first ACL.
Comments are closed