1.{} and there is a space between
2.find. There are also spaces between-name
3.exec is a follow-up command, and the contents of {} represent the files found earlier
How to bulk delete empty files (Files of size equal to 0) under Linux
Find " * " Xargs 1 RM -F
You can also delete a file of the specified size, as long as you modify the corresponding-size parameter, for example:
Find " * " Xargs 1 RM -F
is to delete files of 1k size. (but be careful not to use-size 1k, this gets to occupy space 1k, not file size 1k).
Query out all empty folders
Find -type d-empty
list the files you have searched for Deleting Files
Find " Test.txt "
Delete a searched file in bulk
Find " Shuaige.txt " |xargs RM-RF
Prompt before deletion
Find " Test.txt " rm -rf {};
Delete the files under all the test folders under the current directory
Find " Test " -type D-| rm -rf {};
Note://delete all the. svn files under the folder
Find ' . SVN ' rm -rf {};
Linux_inux Find in bulk delete empty files and empty folder scripts