Updated SC2033 (markdown)

koalaman
2014-08-16 10:49:03 -07:00
parent 08c24e741e
commit e47ffceba8

@@ -17,4 +17,8 @@ Instead, the function contents can be executed in a shell, either through `sh -c
### Contraindications ### Contraindications
None. If you're intentionally passing a word that happens to have the same name as a declared function, you can quote it to make shellcheck ignore it, e.g.
apt-get() {
sudo "apt-get" "$@"
}