On Wed, 2002-10-16 at 12:59, Todd Lyons wrote:

> cd /var/spool/cups/tmp
> find . -exec rm -f {} \;
> 
> Don't do -rf because it will try to remove . and .. and that could be a
> bit of a problem :)  The above command seems like it should work faster
> because it won't try to sort the directory entries.

find . -type f -exec rm -f {} \;
-- 
Brad Felmey


Reply via email to