NetBSD-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: C Question




Thanks for your quick answer
after mod this Script the same error exist

try to build "GeanyPlugin" and this are the line 21126 from my Confiugre script
>for (( i=0; i<extracols; i++ ))
>do
>                   echo -n ' '
>done

try also to run this script in BASH but same issuse
Mauri

Am 01.04.2013 12:40, schrieb Michael David:
This does not look like C to me. It looks like BASH shell programming.

I think the for loop has to be:

for (( i=0; i<extracols; i++ ))
 do
                    echo -n ' '
        done


Michael

On Mon, Apr 1, 2013 at 4:00 PM, Maurizio Caloro <mauric%gmx.ch@localhost> wrote:
  for (( i=0; $i<$extracols; i++ )); do
                    echo -n ' '
        done





Home | Main Index | Thread Index | Old Index