1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-08-16 05:54:53 +02:00

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

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