find and remove ?
    Eitan Adler 
    lists at eitanadler.com
       
    Sat May 14 23:00:13 UTC 2011
    
    
  
> I'm finally getting around to removing any remnants of frontpage. There are
> 1000s of _vti_* directories across several domains and need to clean those
> out. What's the best way to run a short script or command set to find and
> delete those?
man 1 find
find /path/to/start/deleting -type d -name _vti_\*  -delete
run the command without -delete  to see what will be removed.
-- 
Eitan Adler
    
    
More information about the freebsd-questions
mailing list