ฉันกำลังมองหา PowerShell grep --file=filename
เทียบเท่ากับ ถ้าคุณไม่รู้grep
ชื่อไฟล์คือไฟล์ข้อความที่แต่ละบรรทัดมีรูปแบบนิพจน์ทั่วไปที่คุณต้องการจับคู่
บางทีฉันอาจขาดอะไรบางอย่างที่ชัดเจน แต่Select-String
ดูเหมือนจะไม่มีตัวเลือกนี้
ฉันกำลังมองหา PowerShell grep --file=filename
เทียบเท่ากับ ถ้าคุณไม่รู้grep
ชื่อไฟล์คือไฟล์ข้อความที่แต่ละบรรทัดมีรูปแบบนิพจน์ทั่วไปที่คุณต้องการจับคู่
บางทีฉันอาจขาดอะไรบางอย่างที่ชัดเจน แต่Select-String
ดูเหมือนจะไม่มีตัวเลือกนี้
คำตอบ:
-Pattern
พารามิเตอร์ในSelect-String
การสนับสนุนอาร์เรย์ของรูปแบบ ดังนั้นสิ่งที่คุณกำลังมองหาคือ:
Get-Content .\doc.txt | Select-String -Pattern (Get-Content .\regex.txt)
สิ่งนี้ค้นหาผ่าน textfile doc.txt
โดยใช้ทุก regex (หนึ่งต่อบรรทัด) ในregex.txt
PS) new-alias grep findstr
PS) C:\WINDOWS> ls | grep -I -N exe
105:-a--- 2006-11-02 13:34 49680 twunk_16.exe
106:-a--- 2006-11-02 13:34 31232 twunk_32.exe
109:-a--- 2006-09-18 23:43 256192 winhelp.exe
110:-a--- 2006-11-02 10:45 9216 winhlp32.exe
PS) grep /?
findstr
ทำงานได้ดีที่สุดgrep
บน Linux Select-String
ดีมากสำหรับการทำงานกับวัตถุ แต่บางครั้งคุณแค่ต้องการจับคู่กับสตริง
findstr
ไม่ใช่ของ PowerShell แต่เป็น Command Prompt
ฉันไม่คุ้นเคยกับ grep แต่ด้วย Select-String คุณสามารถทำได้:
Get-ChildItem filename.txt | Select-String -Pattern <regexPattern>
นอกจากนี้คุณยังสามารถทำได้ด้วยรับเนื้อหา:
(Get-Content filename.txt) -match 'pattern'
dir *.cs -Recurse | sls "TODO" | select -Unique "Path"
ขยายนี้เช่น ขอบคุณสำหรับตัวชี้ที่ยอดเยี่ยม
ดังนั้นฉันจึงพบคำตอบที่ดีงามที่ลิงค์นี้: https://www.thomasmaurer.ch/2011/03/powershell-search-for-string-or-grep-for-powershell/
แต่ที่สำคัญคือ
Select-String -Path "C:\file\Path\*.txt" -Pattern "^Enter REGEX Here$"
สิ่งนี้จะให้การค้นหาไฟล์ไดเรกทอรี (* หรือคุณสามารถระบุไฟล์) และการค้นหาเนื้อหาไฟล์ทั้งหมดใน PowerShell หนึ่งบรรทัดซึ่งคล้ายกับ grep มาก ผลลัพธ์จะคล้ายกับ:
doc.txt:31: Enter REGEX Here
HelloWorld.txt:13: Enter REGEX Here
คำถามนี้มีคำตอบอยู่แล้ว แต่ฉันต้องการเพิ่มใน Windows นั่นคือระบบย่อย Windows สำหรับ Linux WSL WSL
ตัวอย่างเช่นหากคุณต้องการตรวจสอบว่าคุณมีบริการชื่อElasicsearchที่อยู่ในสถานะที่กำลังทำงานหรือไม่คุณสามารถทำอะไรบางอย่างเช่นตัวอย่างด้านล่างใน PowerShell
net start | grep Elasticsearch
ฉันมีปัญหาเดียวกันกับการพยายามค้นหาข้อความในไฟล์ที่มี powershell ฉันใช้สิ่งต่อไปนี้ - อยู่ใกล้กับสภาพแวดล้อม Linux มากที่สุด
หวังว่านี่จะช่วยให้ใครบางคน:
PowerShell:
PS) new-alias grep findstr
PS) ls -r *.txt | cat | grep "some random string"
คำอธิบาย:
ls - lists all files
-r - recursively (in all files and folders and subfolders)
*.txt - only .txt files
| - pipe the (ls) results to next command (cat)
cat - show contents of files comming from (ls)
| - pipe the (cat) results to next command (grep)
grep - search contents from (cat) for "some random string" (alias to findstr)
ใช่มันใช้ได้ดีเช่นกัน:
PS) ls -r *.txt | cat | findstr "some random string"
แต่ select-String ดูเหมือนจะไม่มีตัวเลือกนี้
แก้ไข. PowerShell ไม่ใช่ชุดเครื่องมือของ * nix shells
อย่างไรก็ตามมันก็ไม่ยากที่จะสร้างบางอย่างเหมือนตัวคุณเอง:
$regexes = Get-Content RegexFile.txt |
Foreach-Object { new-object System.Text.RegularExpressions.Regex $_ }
$fileList | Get-Content | Where-Object {
foreach ($r in $regexes) {
if ($r.IsMatch($_)) {
$true
break
}
}
$false
}
Select-String -Pattern somestring
สะอาดกว่านี้มาก
อาจจะ?
[regex]$regex = (get-content <regex file> |
foreach {
'(?:{0})' -f $_
}) -join '|'
Get-Content <filespec> -ReadCount 10000 |
foreach {
if ($_ -match $regex)
{
$true
break
}
}