我正在寻找PowerShell等价于grep——file=filename。如果你不知道grep, filename是一个文本文件,其中每一行都有一个你想要匹配的正则表达式模式。
也许我遗漏了一些明显的东西,但是Select-String似乎没有这个选项。
我正在寻找PowerShell等价于grep——file=filename。如果你不知道grep, filename是一个文本文件,其中每一行都有一个你想要匹配的正则表达式模式。
也许我遗漏了一些明显的东西,但是Select-String似乎没有这个选项。
当前回答
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 /?
其他回答
这个问题已经有了答案,但我只想补充一点,在Windows中有Windows子系统for Linux WSL。
例如,如果你想检查名为Elasicsearch的服务是否处于运行状态,你可以在powershell中执行如下代码片段所示的操作
netstart | grep Elasticsearch
但是select-String似乎没有这个选项。
正确的。PowerShell不是*nix shell工具集的克隆。
然而,自己建造这样的东西并不难:
$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
}
我有同样的问题,试图找到文件中的文本与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"
我不熟悉grep,但选择字符串你可以做:
Get-ChildItem filename.txt | Select-String -Pattern <regexPattern>
你也可以使用Get-Content:
(Get-Content filename.txt) -match 'pattern'
也许?
[regex]$regex = (get-content <regex file> |
foreach {
'(?:{0})' -f $_
}) -join '|'
Get-Content <filespec> -ReadCount 10000 |
foreach {
if ($_ -match $regex)
{
$true
break
}
}