The sed
(Stream Editor) command in Linux is used for text manipulation. It processes and edits text files in a non-interactive way, making it useful for automation.
1. Basic Syntax
[options]
→ Additional options (like-i
for in-place editing).'command'
→ The operation to perform.file
→ The target file.
2. Print File Content (Default Behavior)
If no command is given, sed
prints the file as is.
3. Substituting (Replacing) Text
- Replaces the first occurrence of “old” with “new” in each line.
- Replaces all occurrences of “old” with “new” in each line (
g
= global replacement).
- Edits the file in place instead of just displaying output.
4. Replace Text on a Specific Line
- Replaces “old” with “new” only on line 3.
5. Delete Lines
- Deletes all lines (prints nothing).
- Deletes line 3.
- Deletes lines 2 to 5.
- Deletes lines containing “pattern”.
6. Print Specific Lines
- Prints only line 3.
- Prints lines 2 to 5.
- Prints lines containing “pattern”.
7. Add Text Before or After a Line
- Inserts text before line 3.
- Inserts text after line 3.
8. Replace Only Whole Words
- Ensures only whole occurrences of “word” are replaced.
9. Find and Replace Using Regular Expressions
- Replaces all numbers with
#
.
- Replaces all letters with
*
.
10. Change Case (Uppercase/Lowercase)
- Converts lowercase letters to uppercase.
- Converts uppercase letters to lowercase.
11. Multiple Substitutions
- Replaces “foo” with “bar” and “hello” with “world”.
12. Remove Empty Lines
- Deletes empty lines.
13. Remove Leading and Trailing Spaces
- Removes spaces from the beginning and end of each line.
14. Replace the Nth Occurrence of a Word
- Replaces only the second occurrence of “foo” on each line.
15. Swap Words in a Line
- Swaps “word1” and “word2” in each line.
16. Extract Specific Columns (Like cut
)
- Removes the first word in each line.
17. Replace Text Between Two Patterns
- Replaces “foo” with “bar” only between “start” and “end” lines.
18. Append a String to Every Line
- Appends ” – Appended text” at the end of each line.
19. Insert Line Numbers
- Adds line numbers before each line.
20. Backup Original File Before Editing
- Creates a backup
file.txt.bak
before modifyingfile.txt
.
The sed
command is a powerful tool for text manipulation, from simple replacements to advanced pattern matching.