I ran into ss64.com which provides good help regarding how to write batch scripts that the Windows Command Interpreter will run.
However, I have been unable to find a good explanation of the grammar of batch scripts, how things expand or do not expand, and how to escape things.
Here are sample questions that I have not been able to solve:
- How is the quote system managed? I made a TinyPerl script
(foreach $i (@ARGV) { print ' @@@ ' . $i ; }), compiled it and called it this way :my_script.exe "a ""b"" c"→ output is@@@ a "b @@@ cmy_script.exe """a b c"""→ output it@@@ "a @@@ b @@@ c"
- How does the internal
echocommand work? What is expanded inside that command? - Why do I have to use
for [...] %%Iin file scripts, butfor [...] %Iin interactive sessions? - What are the escape characters, and in what context? How to escape a percent sign? For example, how can I echo
%PROCESSOR_ARCHITECTURE%literally? I found thatecho.exe %""PROCESSOR_ARCHITECTURE%works, is there a better solution? - How do pairs of
%match? Example:set b=a,echo %a %b% c%→%a a c%set a =b,echo %a %b% c%→bb c%
- How do I ensure a variable passes to a command as a single argument if ever this variable contains double quotes?
- How are variables stored when using the
setcommand? For example, if I doset a=a" band thenecho.%a%I obtaina" b. If I however useecho.exefrom the UnxUtils, I geta b. How comes%a%expands in a different way?
Thank you for your lights.
find? – Josh Lee Nov 4 '10 at 7:51