我不知道如何转义“
我在 Windows XP 的 powershell 中使用 ack。

ack-grep: chars escaping 问题与我的非常相似,但为该问题提供和接受的解决方案对我不起作用。

PS C:\xampp\htdocs> ack abcd
<works as expected>
PS C:\xampp\htdocs> ack <
The redirection operator '<' is not supported yet.
At line:1 char:5
+ ack < <<<<
PS C:\xampp\htdocs> ack \<
The syntax of the command is incorrect.
PS C:\xampp\htdocs> ack '<'
The syntax of the command is incorrect.
PS C:\xampp\htdocs> ack '\<'
The syntax of the command is incorrect.
PS C:\xampp\htdocs> ack [<]
The system cannot find the file specified.
PS C:\xampp\htdocs> ack '[<]'
The system cannot find the file specified.
PS C:\xampp\htdocs> ack '[\<]'
The system cannot find the file specified.
PS C:\xampp\htdocs> ack \Q<\E
The system cannot find the file specified.

最佳答案

您是否有任何理由不想使用 PowerShell 的正则表达式搜索?

Select-String '<' *.*

## or
dir -r | Select-String '<'

关于windows - 如何在windows的powershell中使用ack在文件中搜索 '<'?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6869636/

10-13 09:28