From owner-freebsd-questions@FreeBSD.ORG Fri Apr 9 18:04:32 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0147016A4CE for ; Fri, 9 Apr 2004 18:04:32 -0700 (PDT) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9299143D1D for ; Fri, 9 Apr 2004 18:04:31 -0700 (PDT) (envelope-from parv_fm@mailsent.net) Received: from moo.holy.cow ([69.160.71.102]) by mta10.adelphia.net (InterMail vM.5.01.06.08 201-253-122-130-108-20031117) with ESMTP id <20040410010431.HOIF8065.mta10.adelphia.net@moo.holy.cow>; Fri, 9 Apr 2004 21:04:31 -0400 Received: by moo.holy.cow (Postfix, from userid 1001) id 08D64A2C8; Fri, 9 Apr 2004 21:05:12 -0400 (EDT) Date: Fri, 9 Apr 2004 21:05:12 -0400 From: Parv To: Walter Message-ID: <20040410010512.GB1394@moo.holy.cow> Mail-Followup-To: Walter , f-questions References: <405640BE.9000102@earthlink.net> <20040315235943.GA55958@falcon.midgard.homeip.net> <40564606.3020504@earthlink.net> <20040316035734.GC3419@moo.holy.cow> <20040316041933.GA4098@moo.holy.cow> <40571A35.7040702@earthlink.net> <20040320012555.GA3514@moo.holy.cow> <407727FE.7040102@earthlink.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <407727FE.7040102@earthlink.net> cc: f-questions Subject: Re: deleting directories with ??? in name X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Apr 2004 01:04:32 -0000 in message <407727FE.7040102@earthlink.net>, wrote Walter thusly... > > It looks like another directory structure has appeared in the ftp > directory that Lynx does not "see" and that > find . -inum -delete > does not delete. It does have a dot as the first character, with > some other non-printing characters, but no "/". ... > Do you still want to look at it?? If so, as I'm not overly > conversant with tar ... Wow, i didn't expect that to happen so soon. Here is the tar command pipe... tar cf - \ | bzip2 -9 >> foul-name.tbz2 ...tar will send the output on stdout (-f -) of tarball (-c) of the parent directory of the offending directory name. Bzip2 will then compress the tar output (given on the stdout) to the fullest extent (-9) possible. Tar'ed & compressed output will then be stored in file named 'foul-named.tbz2'. If the size of foul-named.tbz2 is ~30 kB, send me this file as email attachment. Otherwise, please allow me to download it via FTP or HTTP. In all case, please keep the size less than a MB or so. - Parv --