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 characters
sudo apt install gedit | |
cd /tmp/ | |
wget https://download.jetbrains.com/webide/PhpStorm-2021.2.3.tar.gz | |
tar -zxvf PhpStorm-2021.2.3.tar.gz | |
mkdir ~/Apps | |
mv PhpStorm-212.5457.49/ ~/Apps/ | |
ln -s ~/Apps/PhpStorm-212.5457.49 ~/Apps/phpstorm | |
# shortcut | |
vim jetbrains-phpstorm.desktop |
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 characters
git branch -r --merged | egrep -v '(master|main|release|development)' | sed 's/origin\///' | xargs -n 1 git push --delete origin |
OlderNewer