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?

27 s
27

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' *

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *