mirror of
https://github.com/koalaman/shellcheck
synced 2025-08-20 21:33:50 -07:00
Added and fixed checkes related to "$@"/$*
This commit is contained in:
parent
98f5c48d47
commit
7bc732b2a2
6 changed files with 29 additions and 2 deletions
1
goodcase/forargs
Normal file
1
goodcase/forargs
Normal file
|
@ -0,0 +1 @@
|
|||
for f in "$@"; do echo "$f"; done
|
1
goodcase/fornoin
Normal file
1
goodcase/fornoin
Normal file
|
@ -0,0 +1 @@
|
|||
for f; do echo "$f"; done
|
3
goodcase/heredoc
Normal file
3
goodcase/heredoc
Normal file
|
@ -0,0 +1,3 @@
|
|||
cat << FOO
|
||||
test
|
||||
FOO
|
Loading…
Add table
Add a link
Reference in a new issue