Files
tldr/pages.tr/common/go-list.md
2022-10-31 07:06:43 -03:00

21 lines
378 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# go list
> Paket ve modülleri sırala.
> Daha fazla bilgi için: <https://golang.org/cmd/go/#hdr-List_packages_or_modules>.
- Paketleri sırala:
`go list ./...`
- Standart paketleri sırala:
`go list std`
- Paketleri JSON formatında sırala:
`go list -json time net/http`
- Modül bağımlılıklarını ve erişilebilir güncellemeleri sırala:
`go list -m -u all`