Web Hosting Talk







View Full Version : quick question about users and files


ckevin
02-03-2002, 04:44 AM
I want to search/list out files based on owner's user/group, what is the unix command to do that?

For example, I want to know which files belong to group "ABC". Or which files belong to user "AAA".

Thanks,

Kevin

priyadi
02-03-2002, 05:50 AM
find <directory> -user aaa
find <directory> -group abc

ckevin
02-03-2002, 06:12 AM
got it, thank you very much! :)