` `反引号:命令行替换,相当于$(); ' ' 单引号,解决变量赋值空格的问题,其他shell中的特殊字符见:runoob.com
"<<<" 在bash文档中,称之为 "Here Strings",是Here Documents ("<<")的一个变种,它由操作符"<<<"和作为标准输入的字符串构成,here-string是一个用于输入重定向的普通字符串,其他方向符号见: "<" 、 "<<" 、 "< <" 、"<<<" 的含义?
shell中函数定义:
function(){
#shell中常用循环结构:
if [[条件]];then
cat > xx.sh <<stop
#!/bin/sh
xxx
xxx
stop
#表示将stop中间的内容重定向到xx.sh
fi
}