Hello All,
I am currently trying to run a workflow with a single input json file and getting a single output json file. Now I want to run multiple input json files and get multiple different output json files from the same workflow.
The name convention of my Input files are :
1) ABCJSON_F123.json
2) ABCJSON_A31N.json
3) ABCJSON_INDEPENDENT.json
4) ABCJSON_HG56.json
5) ABCJSON_V123L.json
From the above list, I only want to generate results for 1,2,4 & 5 files individually in json format
Expected Output:
1) Output_F123.json
2) Output_A31N.json
4) Output_HG56.json
5) Output_V123L.json
Can you please help me with the kinds of tools that I should be using to generate such outputs. Thank you.