Skip to content
Seo Panel edited this page Jun 8, 2019 · 2 revisions

Welcome to the Seo-Panel-Docs wiki!

Non recursive, files in this directory only:

sed -i -- 's/foo/bar/g' * perl -i -pe 's/foo/bar/g' ./*

(the perl one will fail for file names ending in | or space)).

Recursive, regular files (including hidden ones) in this and all subdirectories

find . -type f -exec sed -i 's/foo/bar/g' {} +

Clone this wiki locally