一.解压版Go语言安装包中自带工具

  • 在%GOROOT%/bin中有三个工具

    • go.exe 编译、运行、构建等都可以使用这个命令
    • godoc.exe 查看包或函数的源码
    • gofmt.exe 格式化文件
      1. --bin
      2. --go.exe
      3. --godoc.exe
      4. --gofmt.exe

      二.go.exe参数列表

  • 在命令行中通过go help查看go参数如下 ``` Usage:

    1. go command [arguments]

The commands are:

  1. build compile packages and dependencies
  2. clean remove object files and cached files
  3. doc show documentation for package or symbol
  4. env print Go environment information
  5. bug start a bug report
  6. fix update packages to use new APIs
  7. fmt gofmt (reformat) package sources
  8. generate generate Go files by processing source
  9. get download and install packages and dependencies
  10. install compile and install packages and dependencies
  11. list list packages
  12. run compile and run Go program
  13. test test packages
  14. tool run specified go tool
  15. version print Go version
  16. vet report likely mistakes in packages

```

三.常用参数解释

  • go version查看Go语言版本
  • go env查看Go语言详细环境
  • go list查看Go语言文件目录
  • go build把源码文件构建成系统可执行文件
  • go clean清空生成的可执行文件
  • go vet静态解析文件,检查是否有语法错误等
  • go get从远程下载第三方Go语言库
  • go bug提交bug
  • go test测试(在后面章节中讲解)
  • go run运行文件