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

This commit is contained in:
Brian Schonecker 2023-06-23 06:57:11 -04:00 committed by GitHub
parent 76e9d99fb9
commit ca529c9d4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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
```