About 276,000 results
Open links in new tab
  1. 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 …

  2. grep (1) - Linux manual page - man7.org

    By default, TYPE is binary, and grep suppresses output after null input binary data is discovered, and suppresses output lines that contain improperly encoded data. When some output is suppressed, …

  3. 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.

  4. grep Cheat Sheet - grep Command Line Guide

    Mar 15, 2025 · It searches for PATTERNS in each FILE and prints each line that matches a pattern. Typically, PATTERNS should be quoted when grep is used in a shell command. Basic Syntax: grep …

  5. 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

  6. How to use grep (with examples) - Linux Audit

    Mar 12, 2025 · We want to leverage the full potential of the grep command, as it can be used in many work-related or personal related activities. It is common to use it for checking configuration files and …

  7. Grep Command in Linux: A Comprehensive Guide - linuxvox.com

    3 days ago · In the realm of Linux command-line utilities, few tools are as indispensable as grep. Short for Global Regular Expression Print, grep is a powerful text-search tool that allows users to scan files …

  8. Linux Grep Command - Computer Hope

    Jun 1, 2025 · Grep, which stands for "global regular expression print," is a powerful tool for matching a regular expression against text in a file, multiple files, or a stream of input. It searches for the …

  9. Use Grep Command on Linux: Comprehensive Guide

    Sep 21, 2025 · As mentioned before, grep can be used to search for a string within a file. Lets search for the word “Ubuntu”: As everything else in Linux, grep is also case sensitive. To ignore case we need …

  10. grep - Wikipedia

    grep is a command-line utility for searching text for lines that match a regular expression. Its name comes from the ed command g/ re /p (g lobal, r egular e xpression, p rint), which has the same …