From owner-freebsd-questions@FreeBSD.ORG Fri Nov 16 15:55:10 2007 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 C070516A418 for ; Fri, 16 Nov 2007 15:55:10 +0000 (UTC) (envelope-from jhall@vandaliamo.net) Received: from trueband.net (director.trueband.net [216.163.120.8]) by mx1.freebsd.org (Postfix) with SMTP id 4938913C4E5 for ; Fri, 16 Nov 2007 15:55:10 +0000 (UTC) (envelope-from jhall@vandaliamo.net) Received: (qmail 19577 invoked by uid 1006); 16 Nov 2007 15:54:48 -0000 Received: from jhall@vandaliamo.net by rs0 by uid 1003 with qmail-scanner-1.16 (spamassassin: 3.1.4. Clear:SA:0(-1.4/100.0):. Processed in 1.587145 secs); 16 Nov 2007 15:54:48 -0000 X-Spam-Status: No, hits=-1.4 required=100.0 X-Spam-Level: Received: from unknown (HELO trueband.net) (172.16.0.22) by -v with SMTP; 16 Nov 2007 15:54:47 -0000 Received: (qmail 9366 invoked from network); 16 Nov 2007 15:54:46 -0000 Received: from unknown (HELO admintool.trueband.net) (127.0.0.1) by -v with SMTP; 16 Nov 2007 15:54:46 -0000 Received: from 65.117.48.155 (SquirrelMail authenticated user jhall@vandaliamo.net) by admintool.trueband.net with HTTP; Fri, 16 Nov 2007 15:54:46 -0000 (GMT) Message-ID: <49329.65.117.48.155.1195228486.squirrel@admintool.trueband.net> In-Reply-To: <20071116133339.GA2312@kobe.laptop> References: <52275.12.170.206.13.1195184604.squirrel@admintool.trueband.net> <20071116133339.GA2312@kobe.laptop> Date: Fri, 16 Nov 2007 15:54:46 -0000 (GMT) From: jhall@vandaliamo.net To: "Giorgos Keramidas" User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: jhall@vandaliamo.net, freebsd-questions@freebsd.org Subject: Re: bash and strings 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: Fri, 16 Nov 2007 15:55:10 -0000 > > See the `dirname' and `basename' commands: > > $ dirname "/usr/local/scripts/firewall.sh" > /usr/local/scripts > $ > > $ basename "/usr/local/scripts/firewall.sh" > firewall.sh > $ > > Be careful about properly quoting the filenames though (note how the > first invocation of `dirname' fails below, and try to understand why > it fails): > > $ testname='foo bar baz' > $ dirname $testname > usage: dirname string > $ dirname "${testname}" > . > $ > > Thank you very much this is exactly what I was looking for. Jay