Skip to content

Instantly share code, notes, and snippets.

@sashadev-sky
Forked from rogpeppe/vgoget.sh
Created August 4, 2023 07:07
Show Gist options
  • Save sashadev-sky/dd2aac647200e11e55706d81dd2b842d to your computer and use it in GitHub Desktop.
Save sashadev-sky/dd2aac647200e11e55706d81dd2b842d to your computer and use it in GitHub Desktop.
go get binary@version
#!/bin/sh
# This command installs binaries at specified versions
# into $GOBIN, $GOPATH/bin or $HOME/bin.
# It assumes Go 1.11.
if [ $# = 0 ]; then
usage: vgoget cmdpackage[@version]... >&2
exit 2
fi
d=`mktemp -d`
cd "$d"
echo 'module temp' > go.mod
for i; do
pkg=`echo $i | sed 's/@.*//'`
go get "$i" &&
go install "$pkg" &&
echo installed `go list -f '{{.ImportPath}}@{{.Module.Version}}' "$pkg"`
done
rm -r "$d"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment