mirror of
https://github.com/koalaman/shellcheck.git
synced 2025-10-03 19:29:44 +08:00
Updated SC1083 (markdown)
@@ -4,12 +4,16 @@
|
||||
|
||||
rmf() { rm -f "$@" }
|
||||
|
||||
or
|
||||
|
||||
eval echo \${foo}
|
||||
|
||||
### Correct code:
|
||||
|
||||
rmf() { rm -f "$@"; }
|
||||
|
||||
and
|
||||
|
||||
eval "echo \${foo}"
|
||||
### Rationale:
|
||||
|
||||
|
Reference in New Issue
Block a user