-
-
Save worthwhileindustries/e8997d1555d8ccc307a8c143dc39e2a2 to your computer and use it in GitHub Desktop.
Revisions
-
greeflas revised this gist
Jun 8, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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://data.services.jetbrains.com/products/download?platform=linux&code=TBA" TOOLBOX_TEMP_DIR=$(mktemp -d) -
greeflas revised this gist
May 12, 2021 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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` -
greeflas revised this gist
May 12, 2021 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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` -
greeflas revised this gist
May 12, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 TOOLBOX_TEMP_DIR=$(mktemp -d) -
greeflas revised this gist
Apr 17, 2019 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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.5179.tar.gz 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!" -
greeflas revised this gist
Mar 28, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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.5037.tar.gz TOOLBOX_TEMP_DIR=$(mktemp -d) -
greeflas revised this gist
Feb 27, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ set -e if [ -d ~/.local/share/JetBrains/Toolbox ]; then echo "JetBrains Toolbox is already installed!" exit 0 fi -
greeflas revised this gist
Feb 27, 2019 . 1 changed file with 2 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ set -e 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=$(mktemp -d) tar -C $TOOLBOX_TEMP_DIR -xf toolbox.tar.gz rm ./toolbox.tar.gz -
greeflas created this gist
Feb 21, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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!"