Created
January 12, 2018 07:35
-
-
Save kymtwyf/18db4b95b678bddba91a794f7e9462f0 to your computer and use it in GitHub Desktop.
script to install robo3t
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
robo3t_path=https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz | |
wget $robo3t_path | |
sudo mv robo3t-*.tar.gz /opt | |
cd /opt | |
sudo tar -xf robo3t-*.tar.gz | |
sudo rm robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* | |
sudo ln -s /opt/robo3t-*/bin/robo3t /usr/local/bin/robo3t |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment