About 302,000 results
Open links in new tab
  1. Sed Command in Linux/Unix With Examples - GeeksforGeeks

    Nov 7, 2025 · The sed command in Linux, short for stream editor, is a non-interactive text editor used to perform basic text transformations on an input stream, such as a file or input from a …

  2. sed, a stream editor - GNU

    sed may be invoked with the following command-line options: Print out the version of sed that is being run and a copyright notice, then exit.

  3. The “sed” Command in Linux [with Practical Examples]

    May 6, 2024 · In this tutorial, you’ll learn how to use the sed command in Linux to edit and manipulate files quickly and efficiently. The sed command is used to edit lines from the File …

  4. Sed Command in Linux with 15 Practical Examples - TecAdmin

    Jan 13, 2023 · In this article, we’ll provide 15 practical examples of using the `sed` command to perform various tasks. 1. Replace string in a file. To replace a string in a file, you can use the …

  5. sed Command in Linux with Examples - LinuxCapable

    Nov 17, 2025 · Follow along to practice selective printing, deletions, insertions, file reads and writes, multi-line operations, and reusable sed scripts that handle logs, CSV data, …

  6. Mastering sed Command in Linux: A Comprehensive Guide

    Jan 8, 2025 · Master the Linux sed command with practical examples. Learn text manipulation, pattern matching, and advanced sed scripting techniques for efficient file pro…

  7. Beginners Guide for Sed Command on Linux

    May 22, 2025 · The sed command is a stream editor that helps you search, find, replace, insert, and delete strings from the referenced text file without opening it. It is similar to the AWK and …

  8. Linux Sed Tutorial: Learn Text Editing with Syntax & Examples

    Mar 4, 2025 · Sed is one of the most powerful tools on Linux and Unix-like systems. Learning it is worthwhile, so in this tutorial, we will start with the sed command syntax and examples. Sed is …

  9. Linux sed Command - Complete Guide with 20 Examples - ZetCode

    Apr 2, 2025 · It reads text line by line, applies specified operations, and outputs the results. This guide covers sed fundamentals with 20 practical examples ranging from basic substitutions to …

  10. sed: Master the Linux Command Line - Full Guide Better 2026

    Aug 2, 2025 · At its core, sed operates by reading input lines, performing specified actions, and writing the results to standard output. Unlike other editors, sed doesn’t modify the original file …