| delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| X-SWARE-Spam-Status: | No, hits=-1.3 required=5.0 tests=AWL,BAYES_00,MISSING_HEADERS,SPF_HELO_PASS,SPF_PASS |
| X-Spam-Check-By: | sourceware.org |
| Date: | Thu, 29 Jan 2009 18:51:25 -0600 (CST) |
| From: | Tim McDaniel <tmcd AT panix DOT com> |
| cc: | cygwin AT cygwin DOT com |
| Subject: | Re: Setting Integer Variables in Bash |
| In-Reply-To: | <f60fe000901291540o62d155c5sa47004f8cfe8c750@mail.gmail.com> |
| Message-ID: | <Pine.NEB.4.64.0901291846010.1979@panix2.panix.com> |
| References: | <21737864 DOT post AT talk DOT nabble DOT com> <f60fe000901291540o62d155c5sa47004f8cfe8c750 AT mail DOT gmail DOT com> |
| MIME-Version: | 1.0 |
| X-IsSubscribed: | yes |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Unsubscribe: | <mailto:cygwin-unsubscribe-archive-cygwin=delorie DOT com AT cygwin DOT com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
On Thu, 29 Jan 2009, Mark J. Reed wrote:
> On Thu, Jan 29, 2009 at 5:54 PM, whitewall wrote:
>> #! /cygdrive/c/cygwin/bin/bash
>> declare -i Red
>> declare -i Green
>> Red=10
>> Green=$Red+1
>
> Since you've declared both Green and Red as integer, you should just
> do Green=Red+1, without the dollar sign. Doing Green=$Red+1 first
> takes Red's value, which is stored as an integer, expands it back
> into its decimal string representation, and then reparses it to
> yield its integer value.
There IS one subtle difference. If you're running with "set -x",
Green=$Red+1
will echo
+ Green=10+1
But
Green=Red+1
will echo
+ Green=Red+1
(assuming that you've not changed PS4, IFS, &c &c). You can decide
which "set -x" output you like. I found that I preferred the
substituted forms, the ones with $this and $that.
--
Tim McDaniel, tmcd AT panix DOT com
--
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/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |