image processing - In batch scripting what does the expression %* expand? -


this question has answer here:

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

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

VBA function to include CDATA -