From 374b5bc4b75e5014f0c5d84ea19c057a5265c1e5 Mon Sep 17 00:00:00 2001 From: TomfromBerlin <123265893+TomfromBerlin@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:21:11 +0100 Subject: [PATCH] Update README.md --- helpers/scripts/shlt/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/scripts/shlt/README.md b/helpers/scripts/shlt/README.md index e0a6242..8f01f55 100644 --- a/helpers/scripts/shlt/README.md +++ b/helpers/scripts/shlt/README.md @@ -10,7 +10,7 @@ Example: `shlt 10` will start the active shell 10 times as a subshell and exit to parent shell. -It is just a one-liner: +It is just an one-liner: ``` if [[ -z $1 ]]; then time $SHELL -i -c exit; else for i in {1..$1}; do time $SHELL -i -c exit; done; fi