> <snip>

> # Initialize remaing list and then
> set "$remaining" # If empty $1 is null
> while [ -n "$1" ] ; do
>    echo "$1"  # remove this
>    kill -9 $

s/\$/$1/ # OOPS!

>    shift
> done
> 
> $ remaining="9997 9998 9999"
> $ while [ -n "$1" ] ; do
> >    echo "$1"
> >    shift
> > done
> 9997 9998 9999
> 
> > 
> > thanks?
> > <snip sig stuff>
> 
> HTH

-- 
Bill

_______________________________________________
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos

Reply via email to