Answers for "linux find and replace in files"

1

find and replace in all files in directory centos

grep -rl 'apples' /dir_to_search_under | xargs sed -i 's/apples/oranges/g'
Posted by: Guest on May-19-2020
14

linux replace string in all files

sed -i 's/old-text/new-text/g' input.txt
Posted by: Guest on March-31-2020
0

Linux command line search and replace string in all files

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'
Posted by: Guest on May-18-2021

Code answers related to "linux find and replace in files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language