Ken Sandberg wrote: > Try "ls | xargs rm" to get around the list being too long.
The safe way to do this, assuming GNU find and GNU xargs, is: find . -type f -print0 | xargs -0 rm Regards, David. _______________________________________________ Help us build a comprehensive ClamAV guide: visit http://wiki.clamav.net http://lurker.clamav.net/list/clamav-users.html