Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save worthwhileindustries/e8997d1555d8ccc307a8c143dc39e2a2 to your computer and use it in GitHub Desktop.

Select an option

Save worthwhileindustries/e8997d1555d8ccc307a8c143dc39e2a2 to your computer and use it in GitHub Desktop.

Revisions

  1. @greeflas greeflas revised this gist Jun 8, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion install-toolbox.sh
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@ fi

    echo "Start installation..."

    wget --show-progress -qO ./toolbox.tar.gz https://download-cf.jetbrains.com/toolbox/jetbrains-toolbox-1.20.8352.tar.gz
    wget --show-progress -qO ./toolbox.tar.gz "https://data.services.jetbrains.com/products/download?platform=linux&code=TBA"

    TOOLBOX_TEMP_DIR=$(mktemp -d)

  2. @greeflas greeflas revised this gist May 12, 2021. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -1,2 +1,3 @@
    To install just run following command

    `curl https://gist.github.com/greeflas/431bc50c23532eee8a7d6c1d603f3921/raw | bash`
  3. @greeflas greeflas revised this gist May 12, 2021. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions readme.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,2 @@
    To install just run following command
    `curl https://gist.github.com/greeflas/431bc50c23532eee8a7d6c1d603f3921/raw | bash`
  4. @greeflas greeflas revised this gist May 12, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion install-toolbox.sh
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@ fi

    echo "Start installation..."

    wget --show-progress -qO ./toolbox.tar.gz https://download-cf.jetbrains.com/toolbox/jetbrains-toolbox-1.14.5179.tar.gz
    wget --show-progress -qO ./toolbox.tar.gz https://download-cf.jetbrains.com/toolbox/jetbrains-toolbox-1.20.8352.tar.gz

    TOOLBOX_TEMP_DIR=$(mktemp -d)

  5. @greeflas greeflas revised this gist Apr 17, 2019. 1 changed file with 4 additions and 4 deletions.
    8 changes: 4 additions & 4 deletions install-toolbox.sh
    Original file line number Diff line number Diff line change
    @@ -9,15 +9,15 @@ fi

    echo "Start installation..."

    wget --show-progress -qO ./toolbox.tar.gz https://download-cf.jetbrains.com/toolbox/jetbrains-toolbox-1.14.5037.tar.gz
    wget --show-progress -qO ./toolbox.tar.gz https://download-cf.jetbrains.com/toolbox/jetbrains-toolbox-1.14.5179.tar.gz

    TOOLBOX_TEMP_DIR=$(mktemp -d)

    tar -C $TOOLBOX_TEMP_DIR -xf toolbox.tar.gz
    tar -C "$TOOLBOX_TEMP_DIR" -xf toolbox.tar.gz
    rm ./toolbox.tar.gz

    $TOOLBOX_TEMP_DIR/*/jetbrains-toolbox
    "$TOOLBOX_TEMP_DIR"/*/jetbrains-toolbox

    rm -r $TOOLBOX_TEMP_DIR
    rm -r "$TOOLBOX_TEMP_DIR"

    echo "JetBrains Toolbox was successfully installed!"
  6. @greeflas greeflas revised this gist Mar 28, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion install-toolbox.sh
    Original file line number Diff line number Diff line change
    @@ -9,7 +9,7 @@ fi

    echo "Start installation..."

    wget --show-progress -qO ./toolbox.tar.gz https://download.jetbrains.com/toolbox/jetbrains-toolbox-1.13.4801.tar.gz
    wget --show-progress -qO ./toolbox.tar.gz https://download-cf.jetbrains.com/toolbox/jetbrains-toolbox-1.14.5037.tar.gz

    TOOLBOX_TEMP_DIR=$(mktemp -d)

  7. @greeflas greeflas revised this gist Feb 27, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion install-toolbox.sh
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,7 @@

    set -e

    if [ -d '~/.local/share/JetBrains/Toolbox' ]; then
    if [ -d ~/.local/share/JetBrains/Toolbox ]; then
    echo "JetBrains Toolbox is already installed!"
    exit 0
    fi
  8. @greeflas greeflas revised this gist Feb 27, 2019. 1 changed file with 2 additions and 3 deletions.
    5 changes: 2 additions & 3 deletions install-toolbox.sh
    Original file line number Diff line number Diff line change
    @@ -2,7 +2,7 @@

    set -e

    if [ -d ~/.local/share/JetBrains/Toolbox ]; then
    if [ -d '~/.local/share/JetBrains/Toolbox' ]; then
    echo "JetBrains Toolbox is already installed!"
    exit 0
    fi
    @@ -11,9 +11,8 @@ echo "Start installation..."

    wget --show-progress -qO ./toolbox.tar.gz https://download.jetbrains.com/toolbox/jetbrains-toolbox-1.13.4801.tar.gz

    TOOLBOX_TEMP_DIR=/tmp/toolbox
    TOOLBOX_TEMP_DIR=$(mktemp -d)

    mkdir $TOOLBOX_TEMP_DIR
    tar -C $TOOLBOX_TEMP_DIR -xf toolbox.tar.gz
    rm ./toolbox.tar.gz

  9. @greeflas greeflas created this gist Feb 21, 2019.
    24 changes: 24 additions & 0 deletions install-toolbox.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,24 @@
    #!/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://download.jetbrains.com/toolbox/jetbrains-toolbox-1.13.4801.tar.gz

    TOOLBOX_TEMP_DIR=/tmp/toolbox

    mkdir $TOOLBOX_TEMP_DIR
    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!"