bash-cheatsheet

Because I suck at bash

View the Project on GitHub asser-dk/bash-cheatsheet

File operations

Search/replace in (multiple) files

Problem

Replace Alice with Bob in all files in directory *

sed -i 's/Alice/Bob/g' *

Command explanation