I have the following inputs - 2 json files one is the base one and the second contains the same properties but the different values, I'd like to merge that objects.
For example:
{
a:{
b:"asda"
}
c: "asdasd"
}
And the second file:
{
a:{
b:"d"
}
}
And the result should be like this:
{a:{b:"d"},c:"asdasd"}
Is that is possible with powershell?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…