Difference between revisions of "Sed"

From DevOps Notebook
Line 2: Line 2:
 
<pre>
 
<pre>
 
$ sudo sed -i -e "s/upload_max_filesize = \"500M\"/upload_max_filesize = \"1200M\"/g" /etc/php7.4/cli/php.ini
 
$ sudo sed -i -e "s/upload_max_filesize = \"500M\"/upload_max_filesize = \"1200M\"/g" /etc/php7.4/cli/php.ini
 +
</pre>
 +
 +
 +
== Search and replace string in multiple files recursively ==
 +
<pre>
 +
$ find /etc/httpd -type f -name *.conf -print0 |xargs -0 sed -i -e 's/192.168.1.2/192.168.1.5/g'
 
</pre>
 
</pre>

Revision as of 10:23, 9 July 2021

Search and replace string in single file

$ sudo sed -i -e "s/upload_max_filesize = \"500M\"/upload_max_filesize = \"1200M\"/g" /etc/php7.4/cli/php.ini


Search and replace string in multiple files recursively

$ find /etc/httpd -type f -name *.conf -print0 |xargs -0 sed -i -e 's/192.168.1.2/192.168.1.5/g'