Skip to content

Instantly share code, notes, and snippets.

@danilogco
Created December 24, 2024 16:41
Show Gist options
  • Save danilogco/c54a8f6ae2831b8d7b2cc926c6c936aa to your computer and use it in GitHub Desktop.
Save danilogco/c54a8f6ae2831b8d7b2cc926c6c936aa to your computer and use it in GitHub Desktop.
DBeaver installer script for Linux (no JDK)
#!/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