Created
December 24, 2024 16:41
-
-
Save danilogco/c54a8f6ae2831b8d7b2cc926c6c936aa to your computer and use it in GitHub Desktop.
DBeaver installer script for Linux (no JDK)
This file contains hidden or 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 | |
APP_FOLDER=/opt | |
TMP_FOLDER=/tmp | |
rm -rf $APP_FOLDER/dbeaver* | |
wget "https://dbeaver.io/files/dbeaver-ce-latest-linux.gtk.x86_64-nojdk.tar.gz" -P $TMP_FOLDER/ | |
tar -xvzf $TMP_FOLDER/dbeaver-ce-latest-linux.gtk.x86_64-nojdk.tar.gz -C $APP_FOLDER/ | |
rm -rf $TMP_FOLDER/dbeaver-ce-latest-linux.gtk.x86_64-nojdk.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment