mirror of
https://github.com/koalaman/shellcheck
synced 2025-07-12 16:13:19 -07:00
Using `--after-context`/`-A` or `--before-context`/`-B` would give a warning recommending the user to use `grep -c`, even though that would give a different result than using `grep | wc -l`: ```fundamental $ echo -e "1\n2\n3" | grep -cA 3 1 1 $ echo -e "1\n2\n3" | grep -A 3 1 | wc -l 3 ``` |
||
---|---|---|
.. | ||
Checks | ||
Formatter | ||
Analytics.hs | ||
Analyzer.hs | ||
AnalyzerLib.hs | ||
AST.hs | ||
ASTLib.hs | ||
Checker.hs | ||
Data.hs | ||
Fixer.hs | ||
Interface.hs | ||
Parser.hs | ||
Regex.hs |