Linux Command Line Search And Replace String In All Files

[Solved] Linux Command Line Search And Replace String In All Files | Shell - Code Explorer | yomemimo.com
Question : linux replace string in all files

Answered by : clear-caterpillar

sed -i 's/old-text/new-text/g' input.txt

Source : | Last Update : Tue, 07 Apr 20

Question : Linux command line search and replace string in all files

Answered by : dizzy-dog-5yp0scnbqbzf

 String Find and replace (folders/sub folders)
> grep -rl "old string" . | xargs sed -i 's/old string/new string/g' URL Find and replace (folders/sub folders)
> grep -rl "www\.google\.com" . | xargs sed -i 's/www\.google\.com/www\.yahoo\.com/g'

Source : https://php-quick-fix.blogspot.com/2021/05/linux-search-and-replace-string-in-all.html | Last Update : Tue, 25 May 21

Answers related to linux command line search and replace string in all files

Code Explorer Popular Question For Shell