Find and replace a value in multiple files in a directory tree

Written by James McDonald

February 12, 2013

Just had a situation where I need to find and replace a value in multiple html, js, php files starting in /var/www/html and descending to replace all instances.

This worked for me.

fgrep srv-02 * -lR | xargs sed -i.bak -e 's/srv-02/srv-04/g'

Basically the above means use fgrep to get a list of files which contain a match

Use xargs to pass each filename to sed

sed creates a backup of each file with a ‘.bak’ extension and does a global (g) find and replace on the search term

 

0 Comments

Submit a Comment

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

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Network speed test host to host

On Ubuntu / Debian apt-get install iperf3 On Windows download it from https://iperf.fr/iperf-download.php#windows Make...

Clear HSTS Settings in CHrome

Open chrome://net-internals/#hsts enter the domain in the query field and click Query to confirm it has HSTS settings...