[EMAIL PROTECTED] wrote:

sigh.. okay, my "correction" had bugs, too :-)
better as


if [ ! -d ~root -a -x /usr/xpg4/bin/sh  ] ; then


Better yet, be POSIX compliant:

if [ ! -d ~root ] && [ -x /usr/xpg4/bin/sh ] ; then


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to