标签: awk
如何将整行存储在变量中?
例如
awk ' /hello.*/ {line= something??} ' abc.txt
答案 0 :(得分:2)
awk '/hello/{line=$0}' abc.txt
这就是你需要的东西=)