From fb19d832187ec52a89b128b2bc07f527e1bf57b0 Mon Sep 17 00:00:00 2001 From: Rumpick Date: Tue, 30 Nov 2021 15:22:39 -0800 Subject: [PATCH] Update Snippets.md fixing missing double quote --- Snippets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Snippets.md b/Snippets.md index b6fa88a..03a4101 100644 --- a/Snippets.md +++ b/Snippets.md @@ -209,7 +209,7 @@ echo "The value of the upperstring variable is: $upperstring" `declare -i d=3` -`e=$(echo "scale=3; $c/$d | bc)` +`e=$(echo "scale=3; $c/$d" | bc)` `echo $e`