Skip to content

Instantly share code, notes, and snippets.

@abn
Last active April 27, 2024 17:49
Show Gist options
  • Save abn/d6a769f5cacd162256c2e67f6c3459b0 to your computer and use it in GitHub Desktop.
Save abn/d6a769f5cacd162256c2e67f6c3459b0 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