11 · The Command Line

sed / awk

Transform text in a stream

Classic power tools for editing text as it flows past: sed does find-and-replace and edits, awk pulls out and reshapes columns. Terse, but unmatched for quick data surgery.

Concrete example

sed with “s/old/new/g” swaps every “old” for “new” in a file without opening an editor.