We have multiple batch scripts (around 200) that are being executed from a scheduler. We want to replace a command used in all batch scripts by a different command. Is there any command or utility that Windows provides for bulk editing of the files. (Something similar to Sed and AWK in unix).
Kindly help. Sample command is as given below: we need to replace Command Startscen by startscen_dev which is present in every script.
From:
startscen "PKG_TEST" "-1" "TEST" "-AGENT_URL=http://localhost:20910/oraclediagent"
To:
startscen_dev "PKG_TEST" "-1" "TEST" "-AGENT_URL=http://localhost:20910/oraclediagent"