From 3b6063336a7e4307be841f98c1ca629e12c87e8e Mon Sep 17 00:00:00 2001 From: Eisuke Kawashima Date: Tue, 29 Jul 2025 10:45:18 +0900 Subject: [PATCH] Updated SC2234 (markdown) --- SC2234.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2234.md b/SC2234.md index bd0f291..6ae7794 100644 --- a/SC2234.md +++ b/SC2234.md @@ -16,7 +16,7 @@ You are wrapping a single test command in `(..)`, creating an unnecessary subshell. This serves no purpose, but is significantly slower: -``` +```console $ i=0; time while ( [ "$i" -lt 10000 ] ); do i=$((i+1)); done real 0m6.998s user 0m3.453s