Added build files to turn the bible into a book
This commit is contained in:
17
manuscript/chapter6.txt
Normal file
17
manuscript/chapter6.txt
Normal file
@@ -0,0 +1,17 @@
|
||||
# Variables
|
||||
|
||||
## Assign and access a variable using a variable
|
||||
|
||||
```shell
|
||||
hello_world="test"
|
||||
|
||||
# Create the variable name.
|
||||
var1="world"
|
||||
var2="hello_${var1}"
|
||||
|
||||
# Print the value of the variable name stored in 'hello_$var1'.
|
||||
printf '%s\n' "${!var2}"
|
||||
```
|
||||
|
||||
<!-- CHAPTER END -->
|
||||
|
||||
Reference in New Issue
Block a user