From 35c8d213d77ddbb709bef3f356b72c45e8fd2f66 Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Wed, 3 Jul 2019 20:19:20 -0700 Subject: [PATCH] Updated SC1067 (markdown) --- SC1067.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/SC1067.md b/SC1067.md index 3e70e22..36a8b26 100644 --- a/SC1067.md +++ b/SC1067.md @@ -53,11 +53,7 @@ echo "$varFoo" ### Rationale: -`var$n=value` is not a valid way of assigning to a dynamically created variable name in any shell. Please use one of the other methods to assign to names by expanded string. [Wooledge BashFaq #6](https://mywiki.wooledge.org/BashFAQ/006)n="Foo" -read -r "var$n" << EOF -hello -EOF - has significantly more information on the subject. +`var$n=value` is not a valid way of assigning to a dynamically created variable name in any shell. Please use one of the other methods to assign to names by expanded string. [Wooledge BashFaq #6](https://mywiki.wooledge.org/BashFAQ/006) has significantly more information on the subject. ### Exceptions: