For example I have a file called people.json
. Its content is:
[
{"name": "Paul",
"age": 29,
},
{"name": "Kathy",
"age": 101,
},
{"name": "Paula",
"age": 12,
},
{"name": "Bruce",
"age": 56,
}
]
so here I wanted to add a picture link for each person for example
[{"name":"Paul",
"age" : 29,
"pic" : "paul.png"
},
{"name": "Kathy",
"age": 101,
"pic" : "kathy.png"
},
{"name": "Paula",
"age": 12,
"pic" : "paula.png"
},
{"name": "Bruce",
"age": 56,
"pic" : "bruce.png"
}
]
How do I go about writing a script to add a pic
key into each person and add in a person.name.lowercase + ".png" as a value?
At the end of the process, the people.json will be edited and saved into the hardware and not memory.
Thank you very much.