英文:
what does "./..." in "go install ./..." mean in go language?
问题
我是Go的初学者。
我尝试编译一个Go项目,但是我找不到任何解释"/...
"的文档或文章。
cd ~/src/ephenation-server
go install -v ./...
等待您的帮助。
英文:
I am a beginner of go.
I tried to compile a go project, but I can not find any doc or article explaning "/...
".
cd ~/src/ephenation-server
go install -v ./...
Waiting for your help.
答案1
得分: 7
The go command interprets example/path/...
as example/path/
and all subdirectories. You might want to read the section, Description of package lists, on how go
finds your packages..
英文:
The go command interprets example/path/...
as example/path/
and all subdirectories. You might want to read the section, Description of package lists, on how go
finds your packages..
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论