binclude

(★ 274)

Include files in your binary the easy way

파일 탐색기

  • .gitattributes
  • .gitignore
  • binclude.go
  • binclude_test.go
  • go.mod
  • go.sum
  • LICENSE
  • README.md
  • renovate.json
  • test.sh

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

go build

설명 보기 ▼

Compile Go sources.

go build {{path/to/main.go}}

Compile a 'package main' file (output will be the filename without extension):

go build -o {{path/to/binary}} {{path/to/source.go}}

Compile, specifying the output filename:

go build -o {{path/to/binary}} {{path/to/package}}

Compile a package:

🔍

go generate

설명 보기 ▼

Generate Go files by running commands within source files.

go generate

Generate Go files by running commands within source files:

🔍

upx

설명 보기 ▼

실행 파일을 압축하거나 압축 해제.
더 많은 정보: <https://github.com/upx/upx/blob/devel/doc/upx.pod>.

upx {{path/to/file}}

실행 파일 압축:

upx -d {{path/to/file}}

실행 파일 압축 해제:

upx --help

자세한 도움말:

# 프로젝트 배지

// repository documentation