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
Message-ID: <00b201c50767$a507e0b0$f968dc54@I2.COM>
From: "Paolo Gesmundo" <paolo.gesmundo@tiscali.it>
To: <cygwin@cygwin.com>
Subject: Unable to properly execute a let statement from a shell script
Date: Mon, 31 Jan 2005 08:36:57 +0100
MIME-Version: 1.0
Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original
Content-Transfer-Encoding: 7bit
X-IsSubscribed: yes

Hi all,

I am running bash on XP

I have a very simple script a.sh

a.sh:

====================
export P=1
let Q=$P+1
echo P=$P
echo Q=$Q
====================

Case 1)
If at prompt I run:

>a.sh
let: not found
P=1
Q=

Case 2)
If I run:

>bash a.sh
P=1
Q=2

I know that I could modify a.sh by adding #!/bin/bash
at the top of the file but I would need to avoid this
otherwise I have to modify too many scripts

Is there a way to run a.sh like in Case 1 and get the
proper result like in Case 2?

Thanks
Paolo

--
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/

