Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > gnu.bash.bug > #14369 > unrolled thread
| Started by | Grisha Levit <grishalevit@gmail.com> |
|---|---|
| First post | 2018-07-19 15:26 -0400 |
| Last post | 2018-07-19 15:26 -0400 |
| Articles | 1 — 1 participant |
Back to article view | Back to gnu.bash.bug
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: test -v and environment variable names with subscripts Grisha Levit <grishalevit@gmail.com> - 2018-07-19 15:26 -0400
| From | Grisha Levit <grishalevit@gmail.com> |
|---|---|
| Date | 2018-07-19 15:26 -0400 |
| Subject | Re: test -v and environment variable names with subscripts |
| Message-ID | <mailman.3841.1532028429.1292.bug-bash@gnu.org> |
On Thu, Jul 19, 2018 at 2:44 PM konsolebox <konsolebox@gmail.com> wrote:
> On Wed, Jul 18, 2018 at 5:19 AM, Grisha Levit <grishalevit@gmail.com> wrote:
> > $ set -u; unset var; f() { test -v 'var[0]'; echo $?; }; var[0]=X f
> > 0
> > -bash: var[0]: unbound variable
>
> I'm not getting this error. What version of bash are you using?
Sorry about that, the command should have been:
set-u; f() { test -v var[0]; echo $?; echo ${var[0]}; }; var[0]=X f
Back to top | Article view | gnu.bash.bug
csiph-web