About Deleting Zero-sized Files

If you reach the limits of your server's hard drive, you might end having zero-sized files in it. You can recursively delete those from the current directory with the following command:

1
$ find ./ -size 0 -print -delete

Dev Ops Architecture Bash Zsh