====== BASH - Files - Delete empty files ====== find /path/to/dir -type f -size 0 -print|xargs rm **NOTE**: The subdirectories of /path/to/dir are also scanned.