Minor update to the Variables section to BASH cheat sheet. (#2016)

This commit is contained in:
Brian Schonecker
2023-06-23 20:57:11 +10:00
committed by GitHub
parent 76e9d99fb9
commit ca529c9d4f
+1 -1
View File
@@ -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
```