[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: please fix your RC bugs



> [1] Useful fragment for cross platform shell scripts:
> 
> #!/bin/sh
> # Do the Solaris Dance:
> if [ ! -d ~root ]  ; then
>     exec /usr/xpg4/bin/sh $0 "$@" 
> fi
> 

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


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



Reply to: