About 48,100 results
Open links in new tab
  1. grep (1) - Linux manual page - man7.org

    grep searches for patterns in each FILE. In the synopsis's first form, which is used if no -e or -f options are present, the first operand PATTERNS is one or more patterns separated by newline characters, …

  2. grep - Wikipedia

    grep is a command-line utility for searching text for lines that match a regular expression.

  3. grep command in Unix/Linux - GeeksforGeeks

    Nov 3, 2025 · The grep command is one of the most useful tools in Linux and Unix systems. It is used to search for specific words, phrases, or patterns inside text files, and shows the matching lines on your …

  4. grep Cheat Sheet - Command in Line

    The grep command is a powerful utility for searching text using patterns. It searches for PATTERNS in each FILE and prints each line that matches a pattern. Typically, PATTERNS should be quoted when …

  5. Mastering `grep` in Linux: A Comprehensive Guide - linuxvox.com

    Jan 16, 2026 · In the vast landscape of Linux command-line tools, grep stands out as a powerful and versatile utility. Short for Global Regular Expression Print, grep is used to search for specific patterns …

  6. Grep Command in Linux with Examples | Linuxize

    May 17, 2026 · The grep command searches files for text patterns. Quick examples for case-insensitive, recursive, whole-word, regex, and context-line searches.

  7. How to use grep command In Linux / UNIX with examples

    Aug 2, 2007 · Step-by-step guide explains how to use grep command on Linux or Unix-like operating system with plenty of practical examples to search files

  8. Grep - GNU Project - Free Software Foundation

    Aug 8, 2020 · Grep searches one or more input files for lines containing a match to a specified pattern. By default, Grep outputs the matching lines. Stable source releases are available on the main GNU …

  9. Code Search | Grep by Vercel

    Effortlessly search for code, files, and paths across a million GitHub repositories.

  10. How to Use the grep Command on Linux - How-To Geek

    Sep 10, 2023 · The Linux grep command is a string and pattern matching utility that displays matching lines from multiple files. It also works with piped output from other commands.