I have a program that deals with command line args being sent to the program by being executed by Run.
Sometimes I need to send more than one arg, and then the program crashes. And I noticed that it only takes the first one, and I know that it is a problem with the %1 or %s or %l that I use.
What is the right arg to send?
Assumption: batch scripting
Use
%*to get all arguments.%1to%9works for the first nine arguments. You can useshiftto get those after%9.