how do i delete a certain file in linux if its size is 0. I want to execute this in an crontab without any extra script.

l filename.file | grep 5th-tab | not eq 0 | rm

Something like this?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 5 down vote accepted

This will delete all the files in a directory (and below) that are size zero.

find /tmp -size  0 -print0 |xargs -0 rm

If you just want a particular file;

if [ ! -s /tmp/foo ] ; then
  rm /tmp/foo
fi
link|improve this answer
n1, thanks................. – Franz Kafka Mar 29 '11 at 16:47
shortcut: [ -s /tmp/foo ] || rm /tmp/foo (test if size is zero, else remove). Also note the xargs is unsafe if file/directory names contain spaces; find ... -exec rm '{}' \; is safe in that situation. – FrankH. May 13 '11 at 10:25
1  
@Frank, you are incorrect about xargs. The '-print0` and xargs -0 corrects for the spaces. – Paul Tomblin May 13 '11 at 10:49
@FrankH: Plus, even if using find -exec, always favour + over ; in cases where you can (and this is one such case). – Chris Jester-Young Jun 10 '11 at 20:47
feedback

you would want to use find:

 find . -size 0 -delete
link|improve this answer
feedback

On Linux, the stat(1) command is useful when you don't need find(1):

(( $(stat -c %s "$filename") )) || rm "$filename"

The stat command here allows us just to get the file size, that's the -c %s (see the man pages for other formats). I am running the stat program and capturing its output, that's the $( ). This output is seen numerically, that's the outer (( )). If zero is given for the size, that is FALSE, so the second part of the OR is executed. Non-zero (non-empty file) will be TRUE, so the rm will not be executed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.