<div dir="ltr"><br><br><div class="gmail_quote">On Tue, Sep 30, 2008 at 3:47 PM, Mad Unix <span dir="ltr"><<a href="mailto:madunix@gmail.com">madunix@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Dear ALL,<br>
<br>
I need some help with bash scripting, a script that search the content<br>
of multiple files and replace old string ip "<a href="http://10.5.1.10" target="_blank">10.5.1.10</a>" with the new<br>
string ip "<a href="http://127.128.1.10" target="_blank">127.128.1.10</a>" it will search in specific folder and sub<br>
folders<br>
<br>
Thanks<br>
_______________________________________________<br>
CentOS mailing list<br>
<a href="mailto:CentOS@centos.org">CentOS@centos.org</a><br>
<a href="http://lists.centos.org/mailman/listinfo/centos" target="_blank">http://lists.centos.org/mailman/listinfo/centos</a><br>
</blockquote></div><br>sed -i  's/<a href="http://10.5.1.10/127.128.1.10/">10.5.1.10/127.128.1.10/</a>'<br><br>should help you <br>example <br>find /path/ <additional parameters to find the files> | xargs sed -i  's/<a href="http://10.5.1.10/127.128.1.10/">10.5.1.10/127.128.1.10/</a>'<br clear="all">
<br>-- <br>Tharun Kumar Allu<br>==============<br>
</div>