Uniform removal rules in text

Turiok
2025-02-16 18:44:57 +01:00
parent da2754f09c
commit e43ac14ddc

@@ -1,4 +1,5 @@
# `$` is not used specially and should therefore be escaped. # `$` is not used specially and should therefore be escaped.
_Note removed in [v0.3.3 - 2014-05-29](https://github.com/koalaman/shellcheck/blob/2e5c56b27034492134be1538c1e1e6a533ca791a/CHANGELOG.md#removed-1)_
### Problematic code: ### Problematic code:
@@ -20,4 +21,3 @@ echo "\$"
To avoid relying on strange and shell-specific behavior, any `$` intended to be literal should be escaped with a backslash. To avoid relying on strange and shell-specific behavior, any `$` intended to be literal should be escaped with a backslash.
Removed in [v0.3.3 - 2014-05-29](https://github.com/koalaman/shellcheck/blob/2e5c56b27034492134be1538c1e1e6a533ca791a/CHANGELOG.md#removed-1)