April 2018
Beginner
284 pages
7h 3m
English
We already described what variables are and how to define them in Chapter 1, The What and Why of Scripting with Bash.
Just to refresh your memory, you can define a variable by assigning a value with an equals sign and without any spaces like this:
#!/bin/bashmyvar=15myvar2="welcome"
So nothing new here.