Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

sed

GNU stream editor for filtering and transforming text.

Examples

# Substitute 'from' with 'to' in a file (first occurrence only)
sed 's/from/to/' file.txt

# Substitute 'from' with 'to' globally in a file, modify in-place
sed -i 's/from/to/g' file.txt

# Different delimiter  (useful for paths)
sed 's|/from/path|/to/path|' file.txt
sed 's /from/path /to/path ' file.txt