67.6k views
2 votes
Use the find command to display all files owned by the user guru

User Alexndm
by
5.6k points

1 Answer

1 vote

Answer:

find * -user guru

Step-by-step explanation:

find is the command to search in files and the flag -user allow search by the owner of the file

the symbol * is a regular expression that means all the files

Example

find * -user guru

find all the files owned by the user guru

User Dmitrybelyakov
by
4.9k points