I'm trying to correct a bat file that uses bang characters where I would have expected some form of quote: something like
set some_var=!some_var:"=\"!
and then later
some command !some_var!
It looks like the first is prompting for input with echo disabled, like prompting for a password, and the second referencing the variable. Normally, bat files use percent characters for that, like
%some_var%
Anyone know what the bang character does in a bat file exactly? Trying to debug this thing, and don't like guessing.