From: ehorowitz AT mindspring DOT com (Eric Horowitz) Subject: bash questions 6 Feb 1998 11:35:32 -0800 Message-ID: <3.0.1.32.19980206090744.0069b668.cygnus.gnu-win32@pop.mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: gnu-win32 AT cygnus DOT com I installed gnu-win32 simply to run some csh scripts that I had on a Solaris box. In the process of converting this script to bash I have encountered the following problems... 1) set It does not seem to do anything. I have been using declare instead. Is set supposed to set variables? 2) let let THREE=1+2 works fine in that echo $THREE responds with 3, but... let OLTT=1<2 responds with... 2: no such file or directory 3) If I have a string of items such as... declare ALIST="abc def ghi jkl mno pqr" I can access items individually in a for command such as... for ITEM in $ALIST; do but is there a command or syntax that will let me access any one specific member? I would like to do something like... declare THIS_ITEM=$ALIST[$INDEX] 4) test I would like to make complicated arithmetic relational operations such as... test ($V1 -lt $V2) -a ($V3 -lt $V4) but I am not getting the syntax quite right. Is there a way to do this? Thanks... Eric Horowitz - For help on using this list (especially unsubscribing), send a message to "gnu-win32-request AT cygnus DOT com" with one line of text: "help".