你能幫我合併兩個文件嗎? 實際上它的行應該被合併,並且每一行都有相同的ID(例如在這個例子中是1或2)。如何合併2個差異文件中的行(linux awk)
文件1
1#first#scott#prince01
2#second#scott#prince02
文件2
1#scott#prince01#88129
2#scott#prince02#34
最後
1#first#scott#prince01#1#scott#prince01#88129
2#second#scott#prince02#2#scott#prince02#34
OMG。很簡單。我們可以在所有其他unix中使用'join'命令嗎? – Sigularity
@Sigularity,'join'是來自GNU coreutils的標準工具https://www.gnu.org/software/coreutils/manual/ – RomanPerekhrest