I have a config file "config.json"...
{
host: "abc",
port: "59300"
}
I want to extract the values of host & port and feed it to a bat file, the contents of which read,
@echo off
cmd /c "cd /d %ZOWE_HOME%\zlux-app-server\bin && nodeServer.bat --allowInvalidTLSProxy=true -h %host% -P %port% -p 9999"
How to accomplish this in a single .bat file?