如何在 awk 命令中添加变量?以下是我的命令:
cat /home/ubuntu/test/copy.txt | awk 'NR==21{print ".host = "$line";"}1'
$line 基本上是一个从文本文件中检索到的 IP 地址。使用上面的命令,输出看起来像
.host = ;
任何直接的帮助将不胜感激。
copy.txt格式
backend default {
#.host = value; need to be here
.port = "8080";
}