mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-28 23:24:55 +02:00
12 lines
165 B
Markdown
12 lines
165 B
Markdown
# go list
|
|
|
|
> List packages or modules.
|
|
> More information: <https://golang.org/cmd/go/>.
|
|
|
|
- List all packages:
|
|
|
|
`go list all`
|
|
|
|
- List all modules:
|
|
|
|
`go list -m all`
|