gobuster, gocr, gocryptfs, godoc, godot: add Korean translation (#14392)

This commit is contained in:
HoJeong Im
2024-10-31 01:45:09 +09:00
committed by GitHub
parent 838c154ac3
commit c7f4db18ce
5 changed files with 117 additions and 0 deletions

24
pages.ko/common/godoc.md Normal file
View File

@@ -0,0 +1,24 @@
# godoc
> Go 패키지에 대한 문서를 확인.
> 더 많은 정보: <https://godoc.org/>.
- 특정 패키지에 대한 도움말 표시:
`godoc {{fmt}}`
- "fmt" 패키지의 "Printf" 함수에 대한 도움말 표시:
`godoc {{fmt}} {{Printf}}`
- 포트 6060에서 웹 서버로 문서 제공:
`godoc -http=:{{6060}}`
- 인덱스 파일을 생성:
`godoc -write_index -index_files={{경로/대상/파일}}`
- 주어진 색인 파일을 사용하여 문서를 검색:
`godoc -http=:{{6060}} -index -index_files={{경로/대상/파일}}`