In a message dated: Wed, 17 Jul 2002 11:48:15 EDT
"Chad R. Henry" said:

>What I have is:
>
>count=1
>while [ $count -lt 284 ]
>do
>       count='expr $count + 1'
>       echo "http://foo.foo.org/foo[$count].file"; >> /home/user/output
>done

Enclose $count in double quotes within the backticks:

        count='expr "$count" + 1'

Should work, does for me:

        $ while [ $count -lt 10 ]
        > do
        >  count=`expr "$count" + 1`
        >  echo "count = $count "
        > done
        count = 2 
        count = 3 
        count = 4 
        count = 5 
        count = 6 
        count = 7 
        count = 8 
        count = 9 
        count = 10



-- 

Seeya,
Paul



*****************************************************************
To unsubscribe from this list, send mail to [EMAIL PROTECTED]
with the text 'unsubscribe gnhlug' in the message body.
*****************************************************************

Reply via email to