In a batch file I have a line such as:
if "%1" == "some_value" goto somegoto
in order to test a parameter against a value. If however I need to pass as the first parameter to my batch file a string with some equal signs in it such as:
"cxxflags=-std=c++11"
I pass it with quotes so it is a...