From owner-freebsd-security Sun Aug 29 20:39:23 1999 Delivered-To: freebsd-security@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id AA9FD151B7 for ; Sun, 29 Aug 1999 20:39:20 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id VAA00845; Sun, 29 Aug 1999 21:37:35 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA00549; Sun, 29 Aug 1999 21:36:50 -0600 (MDT) Message-Id: <199908300336.VAA00549@harmony.village.org> To: Doug Subject: Re: Not sure if you got it... Cc: dynamo@ime.net, security@FreeBSD.ORG In-reply-to: Your message of "Sun, 29 Aug 1999 20:14:13 PDT." <37C9F705.1041CA95@gorean.org> References: <37C9F705.1041CA95@gorean.org> <199908300018.SAA90400@harmony.village.org> <199908300235.UAA00552@harmony.village.org> Date: Sun, 29 Aug 1999 21:36:50 -0600 From: Warner Losh Sender: owner-freebsd-security@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <37C9F705.1041CA95@gorean.org> Doug writes: : > + 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/ OK. I just was following existing practice... I've fixed it in another way, however, using find. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-security" in the body of the message