Date: Sun, 29 Aug 1999 20:14:13 -0700 From: Doug <Doug@gorean.org> To: Warner Losh <imp@village.org> Cc: dynamo@ime.net, security@FreeBSD.ORG Subject: Re: Not sure if you got it... Message-ID: <37C9F705.1041CA95@gorean.org> References: <199908300018.SAA90400@harmony.village.org> <Pine.BSI.4.02.9908282221020.15859-100000@ime.net> <199908300235.UAA00552@harmony.village.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Warner Losh wrote:
> + if test -x ${i} -o ! -s ${i} -o ! -f ${i}; then
If you could rewrite this as:
if [ -x ${i} -o ! -s ${i} -o ! -f ${i} ]; then
it would be one less thing for me to do in my "clean up the rc files"
project. :) You can see the examples at http://gorean.org/rcfiles/
Thanks,
Doug
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-security" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?37C9F705.1041CA95>
