Sunday, January 28, 2024

[SOLVED] How to replace a string in multiple files in linux command line

Issue

I need to replace a string in a lot of files in a folder, with only ssh access to the server. How can I do this?


Solution

cd /path/to/your/folder
sed -i 's/foo/bar/g' *

Occurrences of "foo" will be replaced with "bar".

On BSD systems like macOS, you need to provide a backup extension like -i '.bak' or else "risk corruption or partial content" per the manpage.

cd /path/to/your/folder
sed -i '.bak' 's/foo/bar/g' *


Answered By - kev
Answer Checked By - Clifford M. (WPSolving Volunteer)