1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/ack.md

25 lines
441 B
Markdown
Raw Normal View History

2014-10-01 18:02:25 -04:00
# ack
> A search tool like grep, optimized for programmers.
> More information: <https://beyondgrep.com/documentation/>.
2014-10-01 18:02:25 -04:00
- Find files containing "foo":
2014-10-01 18:02:25 -04:00
`ack {{foo}}`
- Find files of a specific type:
2014-10-01 18:02:25 -04:00
`ack --ruby {{foo}}`
2014-10-01 18:02:25 -04:00
- Count the total number of matches for the term "foo":
2014-10-01 18:02:25 -04:00
`ack -ch {{foo}}`
- Show the file names containing "foo" and number of matches in each file:
2014-10-01 18:02:25 -04:00
`ack -cl {{foo}}`
- List all valid types:
`ack --help=types`