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 $name
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 $name