Variables
example_variable=Windows
example_variable2=Sucksecho $example_variable $example_variable2
Windows Sucksexample=Hello World
bash: World: command not foundgreeting='Hello World'
echo $greeting
Hello World
greeting2="New $greeting"
echo $greeting2
New Hello WorldLast updated