Text File Commands

From rbachwiki
Revision as of 19:00, 31 July 2020 by Bacchas (talk | contribs) (Created page with "== Search multiple files for text, then replace it in all returned files== find . -type f -name "*.html" -exec sed -i 's/thommack\*//g' {} + == Bash menu-Main_Page...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Search multiple files for text, then replace it in all returned files

find . -type f -name "*.html" -exec sed -i 's/thommack\*//g' {} +

Bash menu- Home