Batch arguments

From wikinotes
Revision as of 19:22, 27 August 2023 by Will (talk | contribs) (Created page with "= Arguments = <blockquote> Arguments to a batch-script are accessible as <code>%1</code> to <code>%9</code>.<br> The script itself is <code>%0</code><br> To repeat all params passed to the script, <code>%*</code>. </blockquote><!-- Arguments -->")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Arguments

Arguments to a batch-script are accessible as %1 to %9.
The script itself is %0
To repeat all params passed to the script, %*.