I have seen the usage of %* in batch files and command lines.
%*
Can someone explain the typical usage of %* with an example?
%* expands to the complete list of arguments passed to the script.
You typically use it when you want to call some other program or script and pass the same arguments that were passed to your script.