From d32d68c6a165471ef60c6df79ba5619362b09bca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Tue, 31 Dec 2024 17:46:25 +0100 Subject: [PATCH] Use underscore to mark unused variables. --- d6.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/d6.sh b/d6.sh index a9d5412..bfbf8a9 100755 --- a/d6.sh +++ b/d6.sh @@ -98,7 +98,7 @@ WORDS="" for i in $(seq 1 "$NUM_WORDS") do ROLLS="" - for j in {1..5} + for _j in {1..5} do ROLLS="$((1 + RANDOM % 6))$ROLLS" done