formatting

This commit is contained in:
Stephen McQuay 2017-09-18 09:26:34 -07:00
parent 34cdece6ae
commit b5f5e97438
Signed by: sm
GPG Key ID: 4E4B72F479BA3CE5
1 changed files with 7 additions and 2 deletions

View File

@ -2,6 +2,11 @@
Have you ever peered into `$GOPATH/bin` only to wonder where all that stuff came from?
As someone who originally came from scripting languages where one could trivially peer into an 'executable' using an editor, the origin of binaries in that folder (specifically if `GOPATH=~`) was completely opaque to me. Not any more!
As someone who originally came from scripting languages where one could
trivially peer into an 'executable' using an editor, the origin of binaries in
that folder (specifically if `GOPATH=~`) was completely opaque to me. Not any
more!
`gorigin` helps shed light on this by creating a list of binaries in all the `bin` folders in the `GOPATH` and marching through all the `src` folders in the `GOPATH` and reporting when a go package with a package name of `main` matches.
`gorigin` helps shed light on this by creating a list of binaries in all the
`bin` folders in the `GOPATH` and marching through all the `src` folders in the
`GOPATH` and reporting when a go package with a package name of `main` matches.