Skip to content

Instantly share code, notes, and snippets.

@jniltinho
Forked from andreshincapier/Install_goland.md
Last active April 7, 2024 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jniltinho/a658a4e207fdb6400bac65920eb0b461 to your computer and use it in GitHub Desktop.
Save jniltinho/a658a4e207fdb6400bac65920eb0b461 to your computer and use it in GitHub Desktop.
Install Goland On Ubuntu
#!/bin/bash
## Install Goland 2024.1 on Ubuntu 22.04
wget https://download.jetbrains.com/go/goland-2024.1.tar.gz
tar xvz goland-2024.1.tar.gz
mv GoLand-2024.1 /opt/GoLand
cat <<'EOF' >/usr/share/applications/goland.desktop
[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=GoLand
Icon=/opt/GoLand/bin/goland.svg
Exec="/opt/GoLand/bin/goland.sh"
Comment=GoLand
Categories=Development;
Terminal=false
StartupNotify=true
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment