如何合并两个属性文件,例如使用 shell 脚本: - 如果我有两个属性文件,例如
first.properties
/test/file="anish"
/test/version=3.0
second.properties
/test/author=nath
/test/version=2.0
如果我将 first.properties 合并到 second.properties 上,那么常见的现有属性应该取自 first.properties 所以我的输出应该看起来像
final.properties
/test/file="anish"
/test/version=3.0
/test/author=nath