Powershell 从多个文件中找出关键子文件(findstr)
Posted The Scented Path
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell 从多个文件中找出关键子文件(findstr)相关的知识,希望对你有一定的参考价值。
从文件中找出关键字
$colItems = Get-ChildItem d:\test #定义文件夹的路径 foreach ($i in $colItems) #循环获取文件夹下的txt文件 { $filecontent= Get-Content $i.fullName | findstr /i "a" #获取txt文件的内容 并找到数字a write-host $filecontent $i.fullname} #输出到屏幕上
以上是关于Powershell 从多个文件中找出关键子文件(findstr)的主要内容,如果未能解决你的问题,请参考以下文章
使用 Powershell 从 Azure 存储子容器中删除所有文件