From owner-freebsd-questions@FreeBSD.ORG Sat May 14 23:00:13 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E0D71065670 for ; Sat, 14 May 2011 23:00:11 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id AC5C08FC08 for ; Sat, 14 May 2011 23:00:10 +0000 (UTC) Received: by vws18 with SMTP id 18so3396241vws.13 for ; Sat, 14 May 2011 16:00:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=DYAwU3G5Mv8W8WB+saJ+WL6L+WgB7kQWEypvwpU2svA=; b=HMgkqPAa/oPV8hb99XhKOmHP/dFVJOm2Vqi7nmI7++PVY+tj8HToaBrWLfclGGeR/0 ssFGYCob7B05dW8zbiGJPDt5oSkxCEp9zNCHO3koQXK9m+p6yEJWLhclarjSYaEKMRb8 0N672+cDPz1URBOCZdt4j9gzWOT+iSv/h7dPE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=Cv2B5CfAW6k9tuWYnOCBuEPsa3qtPL42MMEXfve41KcwJekg/fnb4NAtiuzzolz0J9 LrncP99puvN+uRRcbpzerN6eloUL3GpXqp8iJ7d5qE1cM/l93b/QVmMarR392CEwCcqK Mt33/N62FDa7gXt2Zv5MyQAfb0VtAvsZIgN4E= Received: by 10.52.175.6 with SMTP id bw6mr4061609vdc.210.1305414010178; Sat, 14 May 2011 16:00:10 -0700 (PDT) MIME-Version: 1.0 Received: by 10.52.110.42 with HTTP; Sat, 14 May 2011 15:59:39 -0700 (PDT) In-Reply-To: <3.0.1.32.20110514171011.018a0598@sage-american.com> References: <3.0.1.32.20110514171011.018a0598@sage-american.com> From: Eitan Adler Date: Sat, 14 May 2011 18:59:39 -0400 Message-ID: To: "Jack L. Stone" Content-Type: text/plain; charset=UTF-8 Cc: freebsd-questions@freebsd.org Subject: Re: find and remove ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 May 2011 23:00:13 -0000 > 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