1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 08:02:08 +02:00

go-list: add page (#4003)

Signed-off-by: gonejack <igonejack@gmail.com>
This commit is contained in:
gonejack 2020-05-08 20:39:47 +08:00 committed by Starbeamrainbowlabs
parent 19d232cbf4
commit f289daca9e
No known key found for this signature in database
GPG key ID: 1BE5172E637709C2

12
pages/common/go-list.md Normal file
View file

@ -0,0 +1,12 @@
# 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`