Updated SC2089 (markdown)

Vidar Holen
2019-04-27 15:58:14 -07:00
parent b1bebf80da
commit 4151126354

@@ -14,6 +14,13 @@ args=(-lh "My File.txt")
ls "${args[@]}" ls "${args[@]}"
``` ```
or in POSIX overwriting `"$@"`:
```sh
set -- -lh "My File.txt"
ls "$@"
```
### Rationale: ### Rationale:
Bash does not interpret data as code. Consider almost any other languages, such as Python: Bash does not interpret data as code. Consider almost any other languages, such as Python: