Last active
June 12, 2017 17:27
-
-
Save smiller171/f80b53144d33f5538c53 to your computer and use it in GitHub Desktop.
List all go dependencies that are not in the standard library
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
go list -f '{{join .Deps "\n"}}' | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
go list -f '{{join .Deps "\n"}}' | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}' | awk -F'/' '{print $1 "/" $2 "/" $3}' | sort -u |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment