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
echo ${name}taro #echo only given ammount