Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 166 Bytes

bash.md

File metadata and controls

9 lines (6 loc) · 166 Bytes

Bash Cheatsheet

Some useful bash scripts and snippets.

find and replace text in multiple files

grep -RiIl 'search' | xargs sed -i 's/search/replace/g'