8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd1d58c commit 86b3380Copy full SHA for 86b3380
command/ack.md
@@ -3,12 +3,30 @@ ack
3
4
比grep好用的文本搜索工具
5
6
-## 示例
+## 安装
7
8
+```bash
9
+# ubuntu下要安装ack-grep
10
+sudo apt-get install ack-grep
11
```
-# install
-apk install ack
12
-# use
13
+## 特点
14
+
15
+ack官网列出了这工具的5大卖点:
16
17
+1. 速度非常快,因为它只搜索有意义的东西。
18
+2. 更友好的搜索,忽略那些不是你源码的东西。
19
+3. 为源代码搜索而设计,用更少的击键完成任务。
20
+4. 非常轻便,移植性好。
21
+5. 免费且开源
22
23
+## 实例
24
25
+```
26
ack
-```
27
28
29
30
+## 参考资料
31
32
+- [ack官网](https://beyondgrep.com/)
0 commit comments