如何合并两个属性文件,使用shell脚本,例如: - 如果我有两个属性文件一样
first.properties
/test/file="anish"
/test/version=3.0
second.properties
/test/author=nath
/test/version=2.0
如果我在second.properties然后共同存在的属性应该从first.properties采取合并first.properties所以我的输出应该看起来像
final.properties
/test/file="anish"
/test/version=3.0
/test/author=nath