Ask Question
11 April, 17:36

The true or false questions.

The command: find - empty - type f - exec rm { } /; will remove all empty regular files, starting from the current directory

+3
Answers (1)
  1. 11 April, 20:17
    0
    true

    Explanation:

    The command:

    find - empty - type f - exec rm { } /;

    carries out the following steps.

    1) Finds all the empty files in the current directory and its subdirectories.

    2) For each of the identified files, it executes the command specified as the parameter to exec option, namely, rm.

    So effectively it removes all empty files in the directory tree starting at the current directory.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “The true or false questions. The command: find - empty - type f - exec rm { } /; will remove all empty regular files, starting from 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