On 3/12/2015 11:39 AM, Jerry Feldman wrote: > Why not > > find /tmp -type d -name pulse\* -mtime +1 -exec rm -rf {} \; It's a good habit to use find -print0 | xargs -0 to avoid problems with file names containing special characters. -- Rich P.