#号:
注释,行首以#开头为注释(#!是个例外)
命令是不能跟在同一行上注释的后边的,没有办法,在同一行上,注释的后边想
要再使用命令,只能另起一行.
当然,在echo 命令中被转义的#是不能作为注释的.
同样的,#也可以出现在特定的参数替换结构中或者是数字常量表达式中.
echo “The # here does not begin a comment.” #不是注释
echo ‘The # here does not begin a comment.’ #不是注释
echo The \# here does not begin a comment. #不是注释 \转义字符
echo The # 这里开始一个注释
echo ${PATH#*:}