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.
我有两个文件:
档案一:
apple 123 jfglkfdg banana 567 kxflkjfkg orange 431 dkfgd strawberry 756 kfljxkg
文件 B:
banana 8712 sjflgkj strawberry 812 mdflkgm
我只想比较两个文件的第 1 列并在第三个文件中返回共同的东西。
所以我的输出文件应该是这样的:
输出文件 :
banana strawberry
我该怎么办?有单行吗?
尝试这个:
cut -d' ' -f1 filea|sort>tempfile; cut -d' ' -f1 fileb|sort|join tempfile -; rm tempfile;