Skip to content

Instantly share code, notes, and snippets.

@hucsmn
Created April 23, 2018 09:55
Show Gist options
  • Save hucsmn/9f9ae03a568928d23ca921870b68f569 to your computer and use it in GitHub Desktop.
Save hucsmn/9f9ae03a568928d23ca921870b68f569 to your computer and use it in GitHub Desktop.
auto update all sources and commands
(
cd $GOPATH;
find src '(' -name '.git' -o -name '.hg' ')' -type 'd' | perl -lpe 's{^src/(.+)/.(?:git|hg)$}{$1}' | xargs go get -u -insecure -v;
find src -name 'cmd' -type 'd' | perl -lpe 's{^src/(.+)$}{$1/...}' | xargs go install -v
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment