multiple pages: add Korean Translation (#3549)

This commit is contained in:
Proscream
2019-11-20 02:13:49 +09:00
committed by Starbeamrainbowlabs
parent f07d3ea376
commit 5dfacef130
11 changed files with 220 additions and 6 deletions

33
pages.ko/common/ag.md Normal file
View File

@@ -0,0 +1,33 @@
# ag
> The Silver Searcher.
> ack과 비슷하지만, 더 빠르다.
> 더 많은 정보: <https://github.com/ggreer/the_silver_searcher>.
- "foo"를 포함하고 있는 파일들을 찾고, 내용에서 일치하는 행을 출력:
`ag {{foo}}`
- 특정 디렉토리에서 "foo"를 포함하고 있는 파일 찾기:
`ag {{foo}} {{경로/디렉토리명}}`
- "foo"를 포함하고 있는 파일을 찾되, 파일 이름만 나열:
`ag -l {{foo}}`
- "FOO"를 포함하고 있는 파일들을 사례별로 찾고, 전체 라인이 아닌 일치 라인만 인쇄:
`ag -i -o {{FOO}}`
- "bar" 제목과 일치하는 파일에서 "foo" 찾기:
`ag {{foo}} -G {{bar}}`
- 내용이 정규식과 일치하는 파일 찾기:
`ag '{{^ba(r|z)$}}'`
- 이름이 "foo"와 일치하는 파일 찾기:
`ag -g {{foo}}`