Answers for "using grep and sed to find and replace a string"

C
1

grep find and replace

grep -rl 'oldString' ./ | xargs sed -i 's/oldString/newString/g'
Posted by: Guest on December-14-2020

Code answers related to "using grep and sed to find and replace a string"

Code answers related to "C"

Browse Popular Code Answers by Language