GreatStar Software

2001-03-18 Thread DLQ
Title: ¹«Ë¾¼ò½é Greetings.

Re: `missing' needs patch for Ultrix4.4

2001-03-18 Thread Alexandre Oliva
On Mar 17, 2001, Jim Meyering <[EMAIL PROTECTED]> wrote: > * missing (--run): Use `eval' to run `"$@"'. Otherwise, Ultrix4.4's > /bin/sh fails and outputs garbage. Won't this evaluate the arguments one too many times? How about: prog=$1 shift $prog ${1+"$@"} && exit 0 ? --