Skip to content

Instantly share code, notes, and snippets.

@aculich
Last active September 18, 2018 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aculich/57b9dc3ec36b874225d1ae6fc8beb83d to your computer and use it in GitHub Desktop.
Save aculich/57b9dc3ec36b874225d1ae6fc8beb83d to your computer and use it in GitHub Desktop.
quick globus install
#!/usr/bin/env bash
# See official docs: https://docs.globus.org/how-to/globus-connect-personal-linux/#globus-connect-personal-cli
GLOBUS_VERSION=2.3.6
## install Globus Personal Connect
VERSION=$GLOBUS_VERSION
wget --directory-prefix=/usr/local https://s3.amazonaws.com/connect.globusonline.org/linux/stable/globusconnectpersonal-$VERSION.tgz
(cd /usr/local && tar zxvf globusconnectpersonal-$VERSION.tgz)
(cd /usr/local/bin && ln -s ../globusconnectpersonal-$VERSION/globusconnect)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment