Find all empty files in a UNIX filesystem
Using the find command, locate all files with zero length
To find all empty files on the entire system,
find / -size 0 -print
To find all empty files from the current directory down,
find . -size 0 -print
To find all empty files on the entire system,
find / -size 0 -print
To find all empty files from the current directory down,
find . -size 0 -print
Add New Comment
Thanks. Your comment is awaiting approval by a moderator.
Do you already have an account? Log in and claim this comment.
Add New Comment