Skip to content

Instantly share code, notes, and snippets.

@elvarb
Created November 7, 2017 09:53
Show Gist options
  • Save elvarb/93633b46ce4582d23e854dcf4756a25e to your computer and use it in GitHub Desktop.
Save elvarb/93633b46ce4582d23e854dcf4756a25e to your computer and use it in GitHub Desktop.
Powershell one liner that lists all dependencies in a Go application
$goapp = 'myapp'
((go list -f '{{ .Deps }}' $goapp).Trim('[',']')).Replace(' '," `n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment