I\'m familiar with Unix shell scripting, but new to windows scripting.
I have a list of strings containing str1, str2, str3...str10. I want to do like this:
<
A very simple example:
SET a=Hello SET b=World SET c=%a% %b%! echo %c%
The result should be:
Hello World!