From owner-freebsd-current@FreeBSD.ORG Mon Aug 27 11:11:55 2007 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FD3B16A418 for ; Mon, 27 Aug 2007 11:11:55 +0000 (UTC) (envelope-from dan@danneh.org) Received: from aqua.bluespider.org (aqua.bluespider.org [69.46.20.18]) by mx1.freebsd.org (Postfix) with ESMTP id 201D313C4A7 for ; Mon, 27 Aug 2007 11:11:55 +0000 (UTC) (envelope-from dan@danneh.org) Received: from danneh1.demon.co.uk ([80.176.139.236] helo=shiver.bluespider.org) by aqua.bluespider.org with esmtpa (Exim 4.62) (envelope-from ) id 1IPcVa-000EFq-7z; Mon, 27 Aug 2007 12:11:50 +0100 Message-ID: <46D2B178.8030907@danneh.org> Date: Mon, 27 Aug 2007 12:11:52 +0100 From: Dan User-Agent: Thunderbird 2.0.0.5 (X11/20070719) MIME-Version: 1.0 To: Danny Braniss References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org Subject: Re: sed misbehaving? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Aug 2007 11:11:55 -0000 echo 'ABC'|sed 's/a/z/p' the p flag at the end makes it case sensitive. so in this instance, the above will output "ABC". echo 'ABC'|sed 's/A/z/p' will output zBC. Dan Danny Braniss wrote: > Since noone is complaining, this must be an oversite on my part, but > echo 'ABC'|sed 's/a/z/' > results in > zBC > what did i miss? > > thanks, > danny > > > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > > >