Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有时间在这里完成以下任务。我需要打印第一个字段与第二个字段匹配的输入文件的所有行。这是我的语法,显然不起作用: awk '$1==$2 {print $0}' < inputfile, 有什么想法吗?
第三个字段是$3,不是吗?
$3
awk '$1==$3' inputfile
(既然我们在这里,您可以删除print $0隐含的 ,以及<重定向。)
print $0
<