go*: add Korean translation (#14414)

This commit is contained in:
HoJeong Im
2024-10-27 17:00:40 +09:00
committed by GitHub
parent 676f612bc1
commit 2d602e5b69
10 changed files with 233 additions and 0 deletions

20
pages.ko/common/gox.md Normal file
View File

@@ -0,0 +1,20 @@
# gox
> Go 프로그램을 크로스 컴파일.
> 더 많은 정보: <https://github.com/mitchellh/gox>.
- 모든 운영체제 및 아키텍처 조합에 대해 현재 디렉터리에서 Go 프로그램을 컴파일:
`gox`
- 원격 URL에서 Go 프로그램을 다운로드하고 컴파일:
`gox {{url_1}} {{url_2}}`
- 특정 운영 체제에 대한 현재 디렉터리를 컴파일:
`gox -os="{{운영체제}}"`
- 단일 운영 체제 및 아키텍처 조합에 대한 현재 디렉터리를 컴파일:
`gox -osarch="{{운영체제}}/{{아키텍처}}"`