From 1c2ae3e9543e9188fe4f2fb8bab8391a0160efe3 Mon Sep 17 00:00:00 2001 From: Yuri Slobodyanyuk Date: Thu, 1 Sep 2022 22:27:59 +0300 Subject: [PATCH] Update Windows-cmd-shell-batch-scripting-cheat-sheet.adoc --- cheat-sheets/Windows-cmd-shell-batch-scripting-cheat-sheet.adoc | 2 +- 1 file changed, 1 insertion(+), 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 2346bf1..d2dc208 100644 --- a/cheat-sheets/Windows-cmd-shell-batch-scripting-cheat-sheet.adoc +++ b/cheat-sheets/Windows-cmd-shell-batch-scripting-cheat-sheet.adoc @@ -58,6 +58,6 @@ E.g. `echo The script was called as %0, with the %1 as the first argument` |*shift [/_n_]* |Shift positional arguments by one. If `/n` is given, will shift starting with n+1. E.g. `shift /4` will shift 5th to become 4th, -6th will become 5th, and so, while arguments before 4 will stay untouched. +6th will become 5th, and so on, while arguments before 4 will stay untouched. |===