From ca529c9d4ff7c6b51d803ac3d42cb034081d605f Mon Sep 17 00:00:00 2001 From: Brian Schonecker Date: Fri, 23 Jun 2023 06:57:11 -0400 Subject: [PATCH] Minor update to the Variables section to BASH cheat sheet. (#2016) --- bash.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash.md b/bash.md index b077fdc85..c079175f0 100644 --- a/bash.md +++ b/bash.md @@ -48,7 +48,7 @@ Generally quote your variables unless they contain wildcards to expand or comman ```bash wildcard="*.txt" -option="iv" +options="iv" cp -$options $wildcard /tmp ```