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

User Alexndm
by
8.5k 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
7.7k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.