Ack 是一款专为程序员设计的文本/代码搜索工具,它相比传统的 grep 有以下优势:
sudo apt update
sudo apt install ack
注意:在部分系统中,安装后的命令可能叫做ack或ack-grep,建议直接使用ack。
sudo dnf install ack
brew install ack
choco install ack
Ack 的基本命令格式:
ack [选项] "搜索模式" [搜索路径]
ack "TODO"这会在当前目录及子目录中查找所有包含 "TODO" 的文本行。
ack --python "import"使用--python选项后,ack 只会在以 Python 为主的文件中查找匹配内容。
ack "^def " --python
ack -l "class MyClass"
ack --ignore-dir=build "pattern"
快速定位调试标记
ack "TODO"
搜索函数或变量定义
ack "^def my_function" --python
查找调试输出代码
ack "print\(" --python
列出所有匹配的文件
ack -l "Deprecated"
按文件类型过滤搜索
ack --html "<script"