In the last episode (Jan 27), Dan Langille said:
> Folks: have a look at this FreshPorts shell script and let me know if 
> there is a better way to do this.

Apart from maybe using echo instead of forking 'ls', and caching the
list:

while : ; do
  FILES=`echo *`
  if [ "$FILES" != "*" ] ; then
    for i in $FILES ; do $HOME/scripts/test-freebsd-cvs.sh $i ; done
  fi
done

it looks fine.

-- 
        Dan Nelson
        [EMAIL PROTECTED]

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to