| Name | Type | Description |
|---|---|---|
pattern* | str | Literal string to search for (not a regex). |
path | str | None | Default: NoneDirectory or file to search in. Defaults to |
glob | str | None | Default: NoneOptional glob to restrict the search. Patterns without a
|
max_count | int | None | Default: None |
Search file contents for a literal string using grep -F.
Optional total cap on returned matches across all files.
None returns every match; an int stops the search once the cap
is reached and flags the result with truncated=True.