From owner-freebsd-questions@FreeBSD.ORG Tue May 13 16:42:19 2003 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 140B237B401 for ; Tue, 13 May 2003 16:42:19 -0700 (PDT) Received: from Gina.esfm.ipn.mx (esfm.ipn.mx [148.204.102.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C3AD43FB1 for ; Tue, 13 May 2003 16:42:18 -0700 (PDT) (envelope-from mrspock@esfm.ipn.mx) Received: from Gina.esfm.ipn.mx (localhost [127.0.0.1]) by Gina.esfm.ipn.mx (8.12.6p2/8.12.6) with ESMTP id h4DNgEvM034873; Tue, 13 May 2003 18:42:15 -0500 (CDT) (envelope-from mrspock@esfm.ipn.mx) Received: from localhost (mrspock@localhost)h4DNgEbj034870; Tue, 13 May 2003 18:42:14 -0500 (CDT) X-Authentication-Warning: Gina.esfm.ipn.mx: mrspock owned process doing -bs Date: Tue, 13 May 2003 18:42:14 -0500 (CDT) From: Eduardo Viruena Silva To: =?iso-8859-1?q?adrian=20kok?= In-Reply-To: <20030513215004.37755.qmail@web21201.mail.yahoo.com> Message-ID: <20030513182514.H34161@Gina.esfm.ipn.mx> References: <20030513215004.37755.qmail@web21201.mail.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-questions@freebsd.org Subject: Re: delete file? 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: Tue, 13 May 2003 23:42:19 -0000 On Wed, 14 May 2003, adrian kok wrote: > > But the second one that I can't delete it > > rm "(.)_Final Pro 3(System ID file).dmg" > > no such file or directory! > Let us see again... You have created files whose names have characters that have a special meaning for the shell: (, ), and whitespace. In this case you have to make an escape sequence to reference them. This is made using "\" before the special character. Try this: rm \(.\)_Final\ Pro\ 3\(System\ ID\ file\).dmg now, if this file is the only one ending in ".dmg" you can try: rm *.dmg