URL:http://www.linuxdiyf.com/viewarticle.php?id=20338
First line:
#!/bin/sh
make ./ avaliable:
chmod +x pre.sh
comments:
#
#!/bin/sh
a="Hello world!" #Variable
echo $a #Print $a
echo "$a my name is Liudepeng"
find variable
echo nothing,but not wrong
num=2
echo "this is the $numnd"
right code
num=2
echo "this is the ${num}nd"