Windows7下面使用go build -o router_static && ./router_static时出现问题显示如下信息:
'.' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
先编译main.go 使用命令go build main.go 生成main.exe
在使用命令 go build -o router_static 得到 router_static
最后使用 go build -o router_static && main.exe
go build -o router_static 和 ./router_static分两次输入就可以了