binclude
Include files in your binary the easy way
파일 탐색기
- config.yml
- go.yml
- FUNDING.yml
- main.go
- main.go
- absolute.txt
- bincludeexists.txt
- debug.txt
- filetargetnames.txt
- fromfile.txt
- gzip.txt
- inaccessibleassets.txt
- inaccessiblego.txt
- includeglob.txt
- multiFiles.txt
- multiPackages.txt
- nogofiles.txt
- nonexisting.txt
- test.txt
- unwritable.txt
- bench_test.go
- gen.go
- gen_test.go
- inject.go
- main.go
- binclude.go
- binclude_darwin.go
- binclude_linux.go
- binclude_windows.go
- example.go
- example_darwin.go
- example_linux.go
- example_windows.go
- binexec.go
- binexec_test.go
- main.go
- subdirasset1.txt
- subdirasset2.txt
- asset1.txt
- asset2.txt
- logo_nocompress.png
- binclude.go
- file.txt
- main.go
- .gitattributes
- .gitignore
- binclude.go
- binclude_test.go
- go.mod
- go.sum
- LICENSE
- README.md
- renovate.json
- test.sh
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
링크
예시
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
go build
설명 보기 ▼
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
설명 보기 ▼
go generate
Generate Go files by running commands within source files.
go generate
Generate Go files by running commands within source files:
upx
설명 보기 ▼
upx
실행 파일을 압축하거나 압축 해제.
더 많은 정보: <https://github.com/upx/upx/blob/devel/doc/upx.pod>.
upx {{path/to/file}}
실행 파일 압축:
upx -d {{path/to/file}}
실행 파일 압축 해제:
upx --help
자세한 도움말:
# 프로젝트 배지
// repository documentation
Was this content helpful?
(0 ratings)
