Ask Question
18 April, 21:50

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. 18 April, 21:59
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers