mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-10-03 19:29:44 +08:00
Fix typo.
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
echo $1
|
echo $1
|
||||||
for i in $*; do :; done # this done and the next one also applies to expanding arrays.
|
for i in $*; do :; done # this one and the next one also apply to expanding arrays.
|
||||||
for i in $@; do :; done
|
for i in $@; do :; done
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -102,4 +102,4 @@ FLAGS="-av -e 'ssh -x' --delete --delete-excluded"
|
|||||||
...
|
...
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
eval rsync $FLAGS ~/dir remote_host:dir
|
eval rsync $FLAGS ~/dir remote_host:dir
|
||||||
```
|
```
|
Reference in New Issue
Block a user