-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,22 +4,23 @@ | |
# Contact [email protected] | ||
# | ||
|
||
phpstorm.sh(){ | ||
phpstorm.sh(){ | ||
sudo mkdir ~/phpstorm; | ||
cd ~/phpstorm; | ||
sudo rm -rf *.tar.gz ; | ||
clear; | ||
sudo wget http://download.jetbrains.com/webide/PhpStorm-8.0.1.tar.gz ; | ||
sudo tar -zxvf PhpStorm-8.0.1.tar.gz ; | ||
sudo chmod -Rv 777 ~/phpstorm ; | ||
sudo apt-get purge openjdk* ; | ||
sudo chmod -Rv 777 ~/phpstorm ; | ||
sudo apt-get purge openjdk* ; | ||
sudo apt-get install software-properties-common; | ||
clear; | ||
sudo add-apt-repository -y --remove ppa:webupd8team/java; | ||
sudo add-apt-repository -y ppa:webupd8team/java; | ||
clear; | ||
sudo apt-get update; | ||
sudo apt-get install -y oracle-java8-installer; | ||
sudo apt-get install oracle-java8-set-default; | ||
cd ./*/bin; | ||
sudo chmod +x phpstorm.sh; | ||
./phpstorm.sh; | ||
|