我有一个小测试文件,其中包含:
awk this
and not awk this
but awk this
so do awk this
我已经在 bash 中尝试了以下 awk 命令,但每个命令都不产生输出:
f=awk; awk '/$f/ && !/not/' test.txt
f=awk; awk '/\$f/ && !/not/' test.txt
f=awk; awk '/"$f"/ && !/not/' test.txt
f=awk; awk -v f="$f" '/f/ && !/not/' gtest.txt
由于. "
_!
如何在同一命令中搜索变量并否定另一个字符串?