Glossary · Term

grep

← all terms

Definition

Plain language

A standard command for searching through files and text for lines that match a pattern.

As stated in the literature

A Unix command-line utility that scans input for lines matching a pattern; agents 'grep' a codebase to locate relevant code, a static-search alternative to runtime inspection.

Also called: grepping, greps

Why it matters: It is a fast, universal way to locate the relevant pieces of a large codebase without running anything.

For example, a developer can use grep to instantly find every line in a project that mentions a particular function name.

Heard on the show

“There's no phrase to grep for.”
Episode 158 — How Floating-Point Rounding Lets a Model Tell Which Chip It's On — And Misbehave

Mentioned in 8 episodes

  1. 158
    How Floating-Point Rounding Lets a Model Tell Which Chip It's On — And Misbehave
  2. 150
    Don't Kill the Loser: A Different Way to Handle Two AI Agents Colliding
  3. 087
    When No Agent Reads the Whole Document: A Universal Cliff in Multi-Agent Review
  4. 049
    An AI Agent Reached for Root in Twelve Minutes, Without Being Attacked
  5. 039
    When Smarter Agents Get Fooled by Three Extra Nodes in a Database
  6. 014
    Why a Constrained Pipeline Beat a Full Coding Agent at Finding Bugs 30-to-1
  7. 012
    Why AI Coding Agents Keep Trying to Debug Without a Debugger
  8. 003
    How to Pick the Best of Sixteen Coding Agent Rollouts

Related terms