Go命令行工具
The Command
- 通过
go build
来编译,可以来检验 lib 函数是否有错误,不会生成文件到 pkg 中去。 - 在执行
go install
的时候,才会生成到 pkg 中。 go env GOPATH
prints the effective current GOPATH; it prints the default location if the environment variable is unset.
标准命令详解
go - How to get all dependency files for a program using Golang - Stack Overflow
1 | go get -d -v ./... |
...
is a special pattern, tells to go down recursively
格式化整个目录
1 | gofmt -w -l src |