* Christian Ebert on Friday, December 25, 2009 at 16:22:34 +0000
> Ah, you just want to remove empty mailboxes, then perhaps just
> 
> save_empty=no
> 
> is enough?
> 
> Otherwise something like:
> 
> # delete all empty file inside $mailhier
> find $mailhier -type f -size 0 -exec rm -f {} \;

That's on the command line, in a script you have to escape {}:

find $mailhier -type f -size 0 -exec rm -f \{} \;

c
-- 
\black\trash movie    _C O W B O Y_  _C A N O E_  _C O M A_
                     Ein deutscher Western/A German Western

         --->> http://www.blacktrash.org/underdogma/ccc.php

Reply via email to