Besides SED, how can an equal sign be replaced? And how can I use a string variable in string replacement?
Consider this example:
For /F \"tokens=*\"
I was looking into this, because I needed to get rid of = in a string like "test=goingon" I found that calling a next batchfile with test=goingon as parameters, I have parameters 1, "test" and 2, "goingon", in that batchfile.
So: batchfile 1:
@echo off
call test2.bat test=goingon
batchfile2:
echo arg1: %1
echo arg2: %2
result:
arg1: test
arg2: goingon