Update Windows-cmd-shell-batch-scripting-cheat-sheet.adoc

This commit is contained in:
Yuri Slobodyanyuk
2022-09-01 18:18:01 +03:00
committed by GitHub
parent 56e0612299
commit b8fcc9b629

View File

@@ -54,6 +54,9 @@ script, to let users know what the script is doing.
E.g. `echo The script was called as %0, with the %1 as the first argument` E.g. `echo The script was called as %0, with the %1 as the first argument`
|%* |%*
|The rest of the positional arguments after the 9th. |The rest of the positional arguments after the 9th, not accessible directly, only after `SHIFT`-ing.
|*shift [/_n_]*
|Shift positional arguments by one.
|=== |===