利用powershell搜索系统内的文件内容关键字

公司云平台的access-key泄漏,研发和服务器人员无法找到在哪里用了,求助于我,特记录一次利用powershell搜索系统内的文件内容的方式方法,当然也可以使用everthing利用content搜索关键字

$searchString = "需要搜索的内容关键字"  
$directoryPath = "搜索的磁盘或者目录"  
# *.config是搜索的文件类型,
Get-ChildItem -Path $directoryPath -Recurse -Filter *.config | Select-String -Pattern $searchString | Select-Object Path, LineNumber, Line

posted @ 2024-09-26 09:35  二乘八是十六  阅读(30)  评论(0编辑  收藏  举报