To install just run following command
curl https://gist.githubusercontent.com/greeflas/431bc50c23532eee8a7d6c1d603f3921/raw | bash
#!/bin/bash | |
set -e | |
if [ -d ~/.local/share/JetBrains/Toolbox ]; then | |
echo "JetBrains Toolbox is already installed!" | |
exit 0 | |
fi | |
echo "Start installation..." | |
wget --show-progress -qO ./toolbox.tar.gz "https://data.services.jetbrains.com/products/download?platform=linux&code=TBA" | |
TOOLBOX_TEMP_DIR=$(mktemp -d) | |
tar -C "$TOOLBOX_TEMP_DIR" -xf toolbox.tar.gz | |
rm ./toolbox.tar.gz | |
"$TOOLBOX_TEMP_DIR"/*/jetbrains-toolbox | |
rm -r "$TOOLBOX_TEMP_DIR" | |
echo "JetBrains Toolbox was successfully installed!" |
@kwanster you're welcome! No problem.
Thank you for this amazing tutorial!!
@mixan-yy you're welcome!
thanks so much! @greeflas
@felipepatricio welcome!
Nice @greeflas
I have one suggestion though, replace the wget with this:
wget -cO toolbox.tar.gz "https://data.services.jetbrains.com/products/download?platform=linux&code=TBA"
That way you don't have to update the script when a new version is released ;)
Ah This helps :) Thank you so much.
@janrpn good hint, thank you!
@raxraj welcome!
Thank you so much!
Thank you so much! It is working in arch linux too
@cativo23, @ndangmods you're welcome, guys!
Very useful thanks @greeflas, i have a queston: do you think is possible to update all IDEs installed with toolbox from a command line in a similar way? Because Toolbox isn't a light program so i prefer don't keep it running in background
Thank you so much!!! Please keep this link alive as I have instructions referencing it.