您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關PowerShell如何實現(xiàn)簡單的grep功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
在PowerShell中,無法像*nix中一樣使用grep命令,直接對一個目錄下的所有文件進行內(nèi)容查找,下面的PS腳本針對目錄和文件進行了區(qū)分,借用Select-String命令,實現(xiàn)了內(nèi)容查找,并顯示查找到的文件和匹配內(nèi)容所在行號。
使用的時候,只需要在shell中,輸入:
"命令所在目錄"\grep.ps1
"需要查找的字符串" "需要查找的路徑"
param($str, $path=".\") #輸入?yún)?shù),默認在當前目錄及其子目錄下查找 if([String]::IsNullOrEmpty($str)){ Write-Output "Caution: input string is empty" exit } $path = Resolve-Path $path #獲取絕對路徑 if([System.IO.Directory]::Exists($path)){ $subPathList = Get-ChildItem $path -Recurse *.* #獲取所有子目錄 foreach($subPath in $subPathList){ $subPath = $subPath.FullName if([System.IO.Directory]::Exists($subPath)){ Continue } $foundArr = Select-String -path $subPath -Pattern $str foreach($found in $foundArr) { if($found -match "(.+:\d+):") #刪除行號后面的內(nèi)容 { Write-Output $matches[1] } } } }elseif([system.IO.File]::Exists($path)){ $foundArr = Select-String -path $path -Pattern $str foreach($found in $foundArr) { if($found -match "(.+:\d+):") { Write-Output $matches[1] } } }
關于“PowerShell如何實現(xiàn)簡單的grep功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。