go,go-*,gofmt,goimports,golangci-lint: add Korean translation (#14190)

This commit is contained in:
코드싸이
2024-10-14 16:51:00 +09:00
committed by GitHub
parent 90ac2d50cd
commit 75d7e53411
21 changed files with 407 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# go tool
> Go 도구 또는 명령 실행.
> Go 명령을 독립 실행형 바이너리로 실행하여 주로 디버깅에 사용.
> 더 많은 정보: <https://pkg.go.dev/cmd/go#hdr-Run_specified_go_tool>.
- 사용 가능한 도구 나열:
`go tool`
- go link 도구 실행:
`go tool link {{경로/대상/main.o}}`
- 실행될 명령을 출력하지만 실제로 실행하지 않음 (`whereis`와 유사):
`go tool -n {{명령}} {{인수들}}`
- 지정된 도구에 대한 문서 보기:
`go tool {{명령}} --help`
- 사용 가능한 모든 교차 컴파일 대상 나열:
`go tool dist list`