Re: bash script error in array definition.

2009-05-29 Thread straygrey
executed by bash. Most likely you either have > #!/bin/sh at the top of it (with /bin/sh being a link to dash or some > other shell that isn't bash), or you're typing "sh myscript" to run it. > > Yep, you are correct and the solution was to place "#!/bin/bash&quo

Re: bash script error in array definition.

2009-05-29 Thread Alf Stockton
Greg Wooledge wrote: On Wed, May 27, 2009 at 03:33:10AM -0700, straygrey wrote: Please tell me what is wrong with the following line that I have in a bash script:- [code] TODAYDATE=`date +"%Y%m%d"` declare -a FiLeS=( $TODAYDATE.TeleformDB.tar.bz2 $TODAYDATE.TeleformDB2.tar.bz2 ) [/code] When I r

Re: bash script error in array definition.

2009-05-27 Thread Greg Wooledge
On Wed, May 27, 2009 at 03:33:10AM -0700, straygrey wrote: > Please tell me what is wrong with the following line that I have in a bash > script:- > [code] > TODAYDATE=`date +"%Y%m%d"` > declare -a FiLeS=( $TODAYDATE.TeleformDB.tar.bz2 > $TODAYDATE.TeleformDB2.tar.bz2 ) > [/code] > When I run it I

bash script error in array definition.

2009-05-27 Thread straygrey
s message in context: http://www.nabble.com/bash-script-error-in-array-definition.-tp23739928p23739928.html Sent from the Gnu - Bash mailing list archive at Nabble.com.