Download Markdown
Best for copying commands, snippets, and config into notes, prompts, or docs
Download MarkdownTools
Print-ready cheat sheet for sed, organized for fast lookup, study, and desk-side use
Sample
sed 's/old/new/' file.txt # substitute first match per line
sed 's/old/new/g' file.txt # substitute all matches per line
sed -n '5p' file.txt # print only line 5
sed '3d' file.txt # delete line 3
echo "hello" | sed 's/hello/hi/' # pipe input
-n | Suppress automatic printing; only print with `p` |
-e 'cmd' | Execute a sed command (chain multiple with `-e`) |
-f script.sed | Read commands from a file |
-i[suffix] | Edit file in-place (optional backup suffix) |
-E / -r | Use extended regular expressions |
Download the full cheat sheet for all sections, formatted for print
Download PDFDownloads
Recommended
B&W, ink-efficient. The default for laser printers and photocopies
Best for Printouts and desk-side reference
Warm color accents for on-screen reading or color printers
Best for Screen reading or color printers
Maximum density, 4-column layout. Everything on one page
Best for Fast scanning and minimum paper use
Text formats
Download Markdown
Best for copying commands, snippets, and config into notes, prompts, or docs
Download MarkdownPreview
The web preview is for quick browsing. The PDF remains the authoritative print artifact
Open in Browser