10 lines
167 B
Bash
Executable file
10 lines
167 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd /opt/
|
|
|
|
## Download IntelliJ IDEA Community from the JetBrain servers
|
|
wget -c https://download-cf.jetbrains.com/idea/ideaIC-2017.2.3.tar.gz
|
|
|
|
##
|