Digital Marketing

Find and delete the zero size files

To find all zero size files, simply use: find ./ -type f -size 0. or: find ./ -type f -empty. This commands will find all zero size files in the current directory with subdirectories and then print the full pathname for each file to the screen.

Comments

Popular posts from this blog

MySQL Sandbox with the Sakila sample database