Ask Question
31 March, 21:03

In Linux, you are preparing to delete the user account tprice, because this user has just left the company. However, before you delete the account, you want to list all files owned by tprice so that you can locate them and decide which files to keep. What command enables you to view all files owned by the tprice account?

a. ls - owner tprice

b. lsuser tprice

c. find / - user tprice

d. scan - owner tprice

+4
Answers (1)
  1. 1 April, 00:58
    0
    c. find / - user tprice

    Explanation:

    The command used to search for files is called find.

    When you search by user across the whole drive, use the following syntax:

    find / - user filename

    The first part of the find command is the find command itself. The next part is an expression which determines what to find. (-user) Finally the last part is the name of the thing to find. (tprice)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “In Linux, you are preparing to delete the user account tprice, because this user has just left the company. However, before you delete the ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers