In this part, I introduce the echo command as well as creating variables.
This tutorial is pretty easy,but very important to bash scripting which I will introduce in following tutorials.
1.COMMAND:
echo
DESCRIPTION:
display a line of text
SYNOPSIS:
echo string
Example:
piniheaven@fish:~/Documents$ echo"Hello,优快云"
Hello,优快云
2.Creating variable and calling variable
Example:
piniheaven@fish:~/Documents$ Hello="Hello,优快云" #create variable
piniheaven@fish:~/Documents$ echo$Hello #call variable
Hello,优快云

This tutorial is pretty easy,but very important to bash scripting which I will introduce in following tutorials.

echo
DESCRIPTION:
display a line of text
SYNOPSIS:
echo string

piniheaven@fish:~/Documents$ echo"Hello,优快云"
Hello,优快云
2.Creating variable and calling variable
Example:
piniheaven@fish:~/Documents$ Hello="Hello,优快云" #create variable
piniheaven@fish:~/Documents$ echo$Hello #call variable
Hello,优快云
