Merge pull request #16 from FriendlyNeighborhoodShane/master

Dynamic variable naming magic
This commit is contained in:
dylan
2020-07-16 15:36:47 +03:00
committed by GitHub

View File

@@ -677,12 +677,12 @@ done
# VARIABLES # VARIABLES
## Name a variable based on another variable ## Name and access a variable based on another variable
```shell ```shell
$ var="world" $ var="world"
$ export "hello_$var=value" $ eval "hello_$var=value"
$ printf '%s\n' "$hello_world" $ eval printf '%s\n' "\$hello_$var"
value value
``` ```