View Single Post
Old 2004-06-19, 09:02 AM   #1
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Need help with deleting all the Frontpage directories off of a server

The paysite that I've become involved with was previously done using Frontpage with the server Frontpage extensions installed.

I want to get rid of "_vti_cnf" directories that are all the place.

I use this to get ride of the .DS_Store files that Macs leave on the server.
find "$@" -type f -name .DS_Store -print0 | xargs -0 rm

So I thought this would work, but I'm getting Illegal variable name
find "$@" -type f -name _vti_cnf -print0 | xargs -0 rm
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote