随笔 - 911  文章 - 5  评论 - 94  阅读 - 243万

替换文件中的某个内容

 脚本一:

复制代码
 1 #定义查找替换函数,用于修改配置文件中的IP(定义要查找的包含某个关键字的行,该关键字不是要替换的内容,比如此处要替换的是行 Hostname=10.4.20.20 中等号后面的内容)
 2 Function SearchReplace ($keyword,$newword,$filepath)
 3    {
 4     $confs = gc $filepath
 5     $linekeyword = (Select-String -Path $filepath  -Pattern $keyword -List).Line
 6     #定义要被替换的内容
 7     $replaceword = $linekeyword.Split("=")[1]
 8 
 9     Clear-Content $filepath
10     foreach ($line in $confs)
11         {
12          $lineold = $line.Split("=")[1]
13          $linenew = $line.Replace($replaceword,$newword)
14          Add-Content $filepath -Value $linenew
15         }
16    }
17 #定义所查找行中的关键字
18 $keyword = "Hostname"
19 #定义要替换后的内容
20 #$ip = (gwmi win32_networkadapterconfiguration -filter "ipenabled = 'true'").ipaddress[0]
20 $ip = ((gwmi win32_networkadapterconfiguration | ? {$_.DefaultIPGateway -ne $null}).IPAddress)[0]
21 #定义所查找替换的文件路径 22 $filepath = "C:\zabbix_agent\conf\zabbix_agentd.win.conf" 23 24 SearchReplace $keyword $ip $filepath
复制代码

 

脚本二:

复制代码
 1 #该脚本先对包含关键字的行内容进行替换,然后再对整个文件进行遍历,将 整行 作为关键字进行替换
 2 Param($keyword,$newword)
 3 
 4 $File = "Update_Config_ERP.txt"
 5 $Currentpath = Split-Path -parent $MyInvocation.MyCommand.Definition 
 6 $Filepath = Join-Path $Currentpath $File
 7 
 8 Function SearchReplace ($keyword,$newword)
 9 {
10 $confs = gc $Filepath
11 If (Select-String -Path $Filepath -Pattern $keyword -Encoding default -Quiet)
12 {
13 $linekeyword = (Select-String -Path $Filepath -Pattern $keyword -Encoding default -List).Line  #只查找包含关键字的第一行
14 $replaceword = $linekeyword.Split("=")[1]
15 $linenewword = $linekeyword.Replace($replaceword,$newword)
16 
17 Clear-Content $Filepath
18 Foreach ($line in $confs)
19 {
20 $linenew = $line.Replace($linekeyword,$linenewword)
21 Add-Content $Filepath -Value $linenew
22 }
23 }
24 }
25 SearchReplace 其他出版物流1 0
复制代码

#或者也可以先遍历每行,然后对每行是否包含某个关键字进行判断、替换

 

三、查找替换关键字

复制代码
 1 $filepath = "d:\ADServer_List.txt"
 2 $keyword="nn"
 3 $newword = "aab"
 4 function SearchReplace ($filepath,$keyword,$newword)
 5 {
 6  $FileContent = gc $filepath
 7  Clear-Content $filepath -Force
 8  foreach ($line in $FileContent)
 9     {
10      $line.replace($keyword,$newword) |out-file $filepath -append
11     }
12 }
13 
14 
15 SearchReplace $filepath $keyword $newword
复制代码

 

四、通过静态类替换内容:

将E:\tmp\zabbix_agentd.win.conf中的10.10.2.2替换为zabbix.x.com

$content = [System.IO.File]::ReadAllText("E:\tmp\zabbix_agentd.win.conf").Replace("10.10.2.2","zabbix.x.com")
[System.IO.File]::WriteAllText("E:\tmp\zabbix_agentd.win.conf", $content)

 

(Get-Content E:\tmp\zabbix_agentd.win.conf).replace("10.16.2.2","zabbix.x.com") | Set-Content E:\tmp\zabbix_agentd.win.conf

注意周围的括号(Get-Content file.txt):
如果没有括号,内容将一次读取一行,然后沿着管道向下流动,直到它到达文件外或设置内容为止,后者试图写入同一个文件,但它已经被get-content打开,您将得到一个错误。括号使内容读取操作只执行一次(打开、读取和关闭)。只有当所有行都已被读取时,它们才会一次被管道化一次,当它们到达管道中的最后一个命令时,它们才能被写入文件

 

posted on   momingliu11  阅读(787)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
历史上的今天:
2013-07-31 监控事件日志关键字规则(EventDescription)
2013-07-31 SCOM发送邮件通知
2013-07-31 Exchange 接收连接器(Client、Default)区别,OUtlook实际测试
2013-07-31 POP3、SMTP端口(SSL、TSL)
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示