码迷,mamicode.com
首页 > 其他好文 > 详细

替换文件中的某个内容

时间:2014-07-31 12:59:56      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:os   文件   io   for   cti   ar   line   new   

#定义要查找的包含某个关键字的行(该关键字不是要替换的内容,比如此处要替换的是行 Hostname=10.4.20.20 中等号后面的内容)
$keyword = "Hostname"
#定义要替换后的内容
$newword = "10.4.20.20"
$filepath = "C:\zabbix_agent\conf\zabbix_agentd.win.conf"

Function SearchReplace ($keyword,$newword,$filepath)
{
$confs = gc $filepath
$linekeyword = (Select-String -Path $filepath -Pattern $keyword -List).Line
#定义要被替换的内容
$replaceword = $linekeyword.Split("=")[1]

Clear-Content $filepath
foreach ($line in $confs)
{
$lineold = $line.Split("=")[1]
$linenew = $line.Replace($replaceword,$newword)
Add-Content $filepath -Value $linenew
}
}

替换文件中的某个内容,布布扣,bubuko.com

替换文件中的某个内容

标签:os   文件   io   for   cti   ar   line   new   

原文地址:http://www.cnblogs.com/dreamer-fish/p/3880339.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!