mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-12 21:35:25 +02:00

* pages.nl/common/a*: update Dutch translation, fix English typo's * Update pages/common/asciinema.md * Update act.md * Update pages.nl/common/act.md * Update age-keygen.md Co-authored-by: Leon <leonvsc@users.noreply.github.com> * pages.nl/common/b*: update Dutch translation (#16248) * pages.nl/common/b*: update Dutch translation * Update pages.nl/common/bc.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --------- Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * certbot: update Dutch translation * Update certbot.md * Fix typos --------- Co-authored-by: Leon <leonvsc@users.noreply.github.com> Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
32 lines
893 B
Markdown
32 lines
893 B
Markdown
# ag
|
|
|
|
> The Silver Searcher. Zoals `ack`, maar wil sneller zijn.
|
|
> Meer informatie: <https://manned.org/ag>.
|
|
|
|
- Zoek bestanden die "foo" bevatten en druk de regelovereenkomsten in context af:
|
|
|
|
`ag foo`
|
|
|
|
- Vind bestanden die "foo" bevatten in een specifieke map:
|
|
|
|
`ag foo {{pad/naar/map}}`
|
|
|
|
- Vind bestanden die "foo" bevatten, maar vermeld alleen de bestandsnamen:
|
|
|
|
`ag {{[-l|--files-with-matches]}} foo`
|
|
|
|
- Vind bestanden die "FOO" niet hoofdlettergevoelig bevatten en druk alleen de overeenkomst af in plaats van de hele regel:
|
|
|
|
`ag {{[-i|--ignore-case]}} {{[-o|--only-matching]}} FOO`
|
|
|
|
- Zoek "foo" in bestanden met een naam die overeenkomt met "bar":
|
|
|
|
`ag foo {{[-G|--file-search-regex]}} bar`
|
|
|
|
- Vind bestanden waarvan de inhoud overeenkomt met een reguliere expressie:
|
|
|
|
`ag '{{^ba(r|z)$}}'`
|
|
|
|
- Zoek bestanden met een naam die overeenkomt met "foo":
|
|
|
|
`ag {{[-g|--filename-pattern]}} foo`
|