英文:
How to list imported module on a go source code directory
问题
有没有一种工具或最简单的方法可以列出 Go 源代码目录中导入的所有包?例如:
$ go list_imports a_directory/
github.com/bla/bla
github.com/foo/bar
LOCAL/module/path
英文:
Is there an tool
or easiest way to list all imported packages on go source code directory? for example:
$ go list_imports a_directory/
github.com/bla/bla
github.com/foo/bar
LOCAL/module/path
答案1
得分: 0
啊,找到了方法:
go list -f '{{join .Deps "\n"}}' | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}} ' | sort | uniq
英文:
Ah found the way..
go list -f '{{join .Deps "\n"}}' | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}} ' | sort | uniq
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论