Creating a variable is done simply with: variablename = value
Callinga variable is done by preprending a $. echo $variablename
#!/bin/bash
name=lintux # remember NO SPACES
echo $nameCreating a variable is done simply with: variablename = value
Callinga variable is done by preprending a $. echo $variablename
#!/bin/bash
name=lintux # remember NO SPACES
echo $name