Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Nov 2011 01:49:16 +0000
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        Jilles Tjoelker <jilles@FreeBSD.org>
Cc:        svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org
Subject:   Re: svn commit: r227366 - in head/etc: . rc.d
Message-ID:  <20111109014916.GA75862@FreeBSD.org>
In-Reply-To: <201111082302.pA8N2Wmj053356@svn.freebsd.org>
References:  <201111082302.pA8N2Wmj053356@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, Nov 08, 2011 at 11:02:32PM +0000, Jilles Tjoelker wrote:
> Author: jilles
> Date: Tue Nov  8 23:02:32 2011
> New Revision: 227366
> URL: http://svn.freebsd.org/changeset/base/227366
> 
> Log:
>   rc.d: Eliminate some unnecessary non-POSIX constructs:
>   
>    * ^ in character class
> 
> -			for file in ${dir}/[^0-9]*.sh; do
> +			for file in ${dir}/[!0-9]*.sh; do

I don't have my copy of POSIX handy, but looking at SUSv2, circumflex `^' is
documented as non-matching list expression specifier, while `!' is not.

I am reading it wrong?

./danfe



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20111109014916.GA75862>