22. Find Single File Based on User
To find all or single file called howtolinux247.txt under /root directory of owner root.# find / -user root -name howtolinux247.txt
23. Find all Files Based on User
To find all files that belongs to user Howtolinux247 under /home directory.# find /home -user howtolinux247
24. Find all Files Based on Group
To find all files that belongs to group Developer under /home directory.# find /home -group developer
25. Find Particular Files of User
To find all .txt files of user Howtolinux247 under /home directory.# find /home -user howtolinux247 -iname "*.txt"
Good Luck For You!!
0 comments:
Post a Comment