19 lines
493 B
Bash
19 lines
493 B
Bash
#!/bin/bash
|
|
cd /opt/
|
|
|
|
## Extract the package
|
|
sudo tar xf /opt/ideaIC-*
|
|
|
|
## Rename the directory
|
|
sudo mv /opt/idea-IC-* /opt/intellij-idea-community
|
|
|
|
## Remove the tar.gz package
|
|
sudo rm /opt/ideaIC-*
|
|
|
|
## Make /usr/bin usable
|
|
sudo mv /usr/bin/intellij-idea-community.sh /usr/bin/intellij-idea-community
|
|
|
|
## Install the .desktop file, if necessary
|
|
if [ -x "/usr/bin/desktop-file-install" ]; then
|
|
sudo /usr/bin/desktop-file-install /usr/share/applications/intellij-idea-community.desktop
|
|
fi
|