Add more butcher docs
parent
72d7a1d601
commit
33019050c5
|
@ -542,8 +542,20 @@ main = B.mainFromCmdParser $ do
|
||||||
"REGEX"
|
"REGEX"
|
||||||
(B.flagHelpStr "drop lines containing this pattern, similar to `grep -v`")
|
(B.flagHelpStr "drop lines containing this pattern, similar to `grep -v`")
|
||||||
label <- B.addFlagStringParams "" ["label"] "STRING" mempty
|
label <- B.addFlagStringParams "" ["label"] "STRING" mempty
|
||||||
yield <- B.addFlagStringParams "y" ["yield"] "REGEX" mempty
|
yield <- B.addFlagStringParams
|
||||||
yieldFull <- B.addFlagStringParams "" ["yield-any"] "REGEX" mempty
|
"y"
|
||||||
|
["yield"]
|
||||||
|
"REGEX"
|
||||||
|
(B.flagHelpStr
|
||||||
|
"always fully retain lines starting with this pattern, disregarding skip/summarize"
|
||||||
|
)
|
||||||
|
yieldFull <- B.addFlagStringParams
|
||||||
|
""
|
||||||
|
["yield-any"]
|
||||||
|
"REGEX"
|
||||||
|
(B.flagHelpStr
|
||||||
|
"always fully retain lines containing this pattern, disregarding skip/summarize"
|
||||||
|
)
|
||||||
omitSummary <- B.addSimpleBoolFlag "" ["omit-summary"] mempty
|
omitSummary <- B.addSimpleBoolFlag "" ["omit-summary"] mempty
|
||||||
tee <- B.addFlagStringParams
|
tee <- B.addFlagStringParams
|
||||||
""
|
""
|
||||||
|
|
Loading…
Reference in New Issue