Skip to content
zero2vibecodelearn vibe coding

grep

find lines matching a pattern.

Example

$ grep error log.txt
Break this command down →

Common flags

  • -iignore case
  • -vlines that don't match
  • -nwith line numbers

Other commands