From b8fcc9b6299ff33f425917ee98976e847e2ffe30 Mon Sep 17 00:00:00 2001 From: Yuri Slobodyanyuk Date: Thu, 1 Sep 2022 18:18:01 +0300 Subject: [PATCH] Update Windows-cmd-shell-batch-scripting-cheat-sheet.adoc --- .../Windows-cmd-shell-batch-scripting-cheat-sheet.adoc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cheat-sheets/Windows-cmd-shell-batch-scripting-cheat-sheet.adoc b/cheat-sheets/Windows-cmd-shell-batch-scripting-cheat-sheet.adoc index ec8be15..298c700 100644 --- a/cheat-sheets/Windows-cmd-shell-batch-scripting-cheat-sheet.adoc +++ b/cheat-sheets/Windows-cmd-shell-batch-scripting-cheat-sheet.adoc @@ -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` |%* -|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. |===