|
From: | Bill Gradwohl |
Subject: | Re: [Help-bash] array indirection |
Date: | Fri, 4 May 2012 18:57:14 -0600 |
AFAIK this syntax ${!variableName[$x]} isn't supported.
I'm guessing the reason the first one worked is because
${!variableName[0]} is a special case because
${!variableName[0]} is a synonym for ${!variableName}
and ${!variableName} is supported.
[Prev in Thread] | Current Thread | [Next in Thread] |