Re: bash doesn't run as a login when when -c specified

2011-06-28 Thread Todd C. Miller
Thanks for the speedy reply. I checked the RedHat src rpm and they do enable NON_INTERACTIVE_LOGIN_SHELLS which explains why the versions I built myself behaved differently from the system bash. - todd On Mon, 27 Jun 2011 22:31:55 EDT, Chet Ramey wrote: > On 6/27/11 11:28 AM, todd.mil...@court

Re: 4.2 error: processing command substitution within arithmetic operation

2011-06-28 Thread Rui Santos
On 25-06-2011 01:50, Chet Ramey wrote: On 6/24/11 1:18 PM, Rui Santos wrote: Try this script: #!/bin/bash declare -ax array array[$(( $( echo -n 1001 ) - 1001 ))]=1 this will issue an error: line 6: 1001: command not found If however the script is turned into: #!/bin/bash declare -ax array

Re: 4.2 error: processing command substitution within arithmetic operation

2011-06-28 Thread Rui Santos
On 24-06-2011 21:01, Greg Wooledge wrote: On Fri, Jun 24, 2011 at 06:18:08PM +0100, Rui Santos wrote: Try this script: #!/bin/bash declare -ax array array[$(( $( echo -n 1001 ) - 1001 ))]=1 this will issue an error: line 6: 1001: command not found imadev:~$ unset array imadev:~$ array[$(( $(