Ask Question
27 January, 15:40

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

+1
Answers (1)
  1. 27 January, 17:45
    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?
Get 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 & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers