> 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
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[email protected]"

Reply via email to