Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save projectoperations/af832a21b4c47a0ce737d244331bf45b to your computer and use it in GitHub Desktop.
Save projectoperations/af832a21b4c47a0ce737d244331bf45b to your computer and use it in GitHub Desktop.
Install JetBrains Toolbox on Fedora
#!/bin/bash
set -e
set -o pipefail
sudo dnf install -y jq fuse fuse-libs
curl -sL \
$(curl -s 'https://data.services.jetbrains.com/products/releases?code=TBA&latest=true&type=release' \
| jq -r '.TBA[0].downloads.linux.link') \
| tar xzvf - \
--directory="${HOME}/.local/bin" \
--wildcards */jetbrains-toolbox \
--strip-components=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment