linux command to find and change a value in multi files
linux command to find and change a value in multi files
find . -name "*.php" -print | xargs sed -i 's/power/strong/g'
here *.php will search for all files that ends with .php
''power'' is the value to be searched and
''strong'' in the value to be replaced
Comments
Post a Comment