在使用awk进行shell脚本编写时,常常要引用外部变量,因要进行字符转义,很难写对,以下是具体方法。

str=Hello

echo "Hello Yes No"|awk '{print " '$str' ",$1}'

运行结果:

Hello  Hello