image processing - In batch scripting what does the expression %* expand? -
this question has answer here:
- what %* mean in batch file 4 answers
i have batch script has got line
echo %* >> test.txt %process% %*
what expression %* denote , expand to?
it expands arguments passed in shell/batch file. e.g.
foo.bat:
echo %*
and doing
c:\> foo.bat abcefg hijkl 1 2 3 echo abcefg hijkl 1 2 3 abcefg hijkl 1 2 3 c:\>
Comments
Post a Comment