我想问一下如何用awk比较和计算2个文件之间的差异
文件1.txt
orange 30
banana 25
apple 30
pear 35
文件2.txt
orange 25
apple 32
jackfruit 15
pear 40
pineapple 20
输出应该是两者之间的差异(和绝对值)并存储在
文件 3.txt:
orange 5
banana 25
apple 2
pear 5
jackfruit 15
pineapple 20
有任何想法吗?