Answers for "bat file get first argument"

0

bat file get first argument

The first item passed is always %1 the second item is always %2 and so on.
If you require all arguments, then you can simply use %* in a batch script.
Posted by: Guest on March-03-2022

Browse Popular Code Answers by Language