本帖最后由 娜美 于 2024-4-16 16:04 编辑
- #@&cls&powershell "type %~s0|out-string|iex"&pause
- Get-ChildItem -Recurse *.txt | Select-String "^$myphone$"|"^$happywitch$"|"^$hello$" | Out-File out.txt
复制代码 想快速通过搜索当到目录及所有子目录在那些文本中是否存在这些行, 但每次需要连续编辑好几个感觉有些麻烦, 想将这些行全部写进一个b.txt文本中去进行搜索
尝试这样似乎不行, 请问如何写才正确, 如何才能更块谢谢- #@&cls&powershell "type %~s0|out-string|iex"&pause
- $file = ' D:\b.txt
- Get-ChildItem -Recurse *.txt | Select-String '$file' | Out-File out.txt
复制代码
|