对于具有两列数据的文件 (file1),如下所示:
1232323 dog
21321 cat
21321 fox
2312323 bird
第二个文件包含两列数据(file2),如下所示:
dog red
cat blue
fox green
bird black
我正在尝试编写一个脚本,该脚本将使用遍历 file1 的第 2 列中的每个条目以从 file2 的第 1 列中查找匹配的条目,并创建第三个文件,将 file2 的第 2 列中的数据附加到具有“像这样打”:
1232323 dog red
21321 cat blue
21321 fox green
2312323 bird black
这是一些伪代码:
For each string in field 2 of file1
grep file2
output field1 and field2 of file1 and matching field2 of file2 from any hits to file3
谢谢你。