I want to change multiple different strings across all files in a folder to one new string.
When the string in the text files (within a same directory) is like this:
- file1.json:
"url/1.png" - file2.json:
"url/2.png" - file3.json:
"url/3.png" - etc.
I would need to point them all to a single PNG, i.e., "url/static.png", so all three files have the same URL inside pointing to the same PNG.
How can I do that?