Example of ignoring the error

Anthony Thyssen
2017-10-25 11:12:53 +10:00
parent 361da20d33
commit 1e8f294abb

@@ -83,4 +83,12 @@ This is better than an unquoted value because the alternative value can be prope
--- ---
As always, this warning can be [[ignore]]d on a case-by-case basis. As always, this warning can be [[ignore]]d on a case-by-case basis.
this is especially relevant when BASH many not be available for the array work around.
For example...
```sh
FLAGS="-av --delete --delete-excluded
...
# shellcheck disable=SC2086
rsync $FLAGS ~/dir remote_host:dir
```