Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
To: cygwin@cygwin.com
From: =?ISO-8859-2?Q?Ren=E9_Berber?= <rberber@prodigy.net.mx>
Subject:  Re: Problem with shell script
Date:  Sun, 24 Jul 2005 15:05:20 -0500
Lines: 29
Message-ID: <dc0s8t$sj4$1@sea.gmane.org>
References:  <20050724191302.58251D10DB@rekin6.o2.pl>
Mime-Version:  1.0
Content-Type:  text/plain; charset=ISO-8859-2
Content-Transfer-Encoding:  8bit
User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)
In-Reply-To: <20050724191302.58251D10DB@rekin6.o2.pl>
X-IsSubscribed: yes

Marek wrote:

> When I put commands below in command line:
> i=1
> echo $i
> i=$(($i+1))
> echo $i
> 
> everything works well (i is incremented from 1 to 2), but when I run this as a shell script the result is:
> 1+1 instead of 2
> 
> How should I do incrementation in shell script?

It depends on what shell and version you are using.

In bash (version > 2.05) I use:

  let i=i+1

And you can also do it inside a loop, like:

  for (( i= 1; i <= $3; i++ )); do
    ...

those double parenthesis are not available in old bash versions.

HTH
-- 
René Berber


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

