This one time, at band camp, Voytek wrote:
>./awstatsproc: let: 08: value too great for base (error token is "08")

>      let i=i+1
>  done
>    let j=j+1

don't use let

i=$(($i + 1))

or

i=`expr $i + 1`

-- 
[EMAIL PROTECTED]                           http://spacepants.org/jaq.gpg
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to