How do I find out all empty file under Linux and UNIX operating systems?
The gnu find command can use as follows to print list of all empty files:
find /path/to/dest -type f -empty # find all empty files in /tmp directory find /tmp -type f -empty
Find all Empty Directories
Type the following command:
find /path/to/dest -type d -empty # find all empty files in /tmp directory find /tmp -type d -empty
Sample outputs:
/tmp/orbit-gdm /tmp/.exchange-vivek /tmp/VMwareDnD /tmp/virtual-vivek.O1nNU0
Find Empty File And Delete Them
Type the following command:
find /path/to/dest -type f -empty -delete # find all empty files in /tmp directory and delete them find /tmp -type f -empty -delete
Find Empty File Owned By A User Called vivek
Type the following command:
find /path/to/dest -type f -empty -user vivek # find all empty files in /tmp directory and delete them find /tmp -type f -empty -user vivek # find all empty files owned by vivek and delete them, in /tmp find /tmp -type f -empty -user vivek -delete
The above commands are tested on GNU version of find and FreeBSD version of find command. Please refer to your local find command man page for exact details.
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 2 comments… read them below or add one }
Can you please help me to get a unix script to list out the 0kb files of pattern DSD*.zip in a particular folder.
Hi subin,
Here’s ans to ur query..
find . -name “DSD*.zip” -size 0b -exec ls -l {} \;
- senthil