From 46ab89401ad6c0dceb7fce72a01d1c1977c4a495 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Thu, 5 Jan 2023 11:40:11 +0000 Subject: [PATCH] fix(division): output numbers in the short version --- sh/tests/solutions/division.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh/tests/solutions/division.sh b/sh/tests/solutions/division.sh index 253cc2c0f..8f5b62ef9 100755 --- a/sh/tests/solutions/division.sh +++ b/sh/tests/solutions/division.sh @@ -22,7 +22,7 @@ then fi # Divide the first argument by the second using bc -result=$(echo "$1 / $2" | bc -l) +result=$(echo "$1 / $2" | bc ) # Output the result echo $result