首页 > 代码库 > 替换文件中的某个内容
替换文件中的某个内容
#定义要查找的包含某个关键字的行(该关键字不是要替换的内容,比如此处要替换的是行 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
}
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。