Owners and Groups

Find single file based on user

$ find / -user root -name tecmint.txt

Find all files based on user

$ find /home -user tecmint

Find all files based on group

$ find /home -group developer

Find particular files of user

$ find /home -user tecmint -iname "\*.txt"
Comments