Skip to content

Instantly share code, notes, and snippets.

@thenets
Last active December 9, 2016 07:17
Show Gist options
  • Save thenets/969373207d69e472702214ce85184142 to your computer and use it in GitHub Desktop.
Save thenets/969373207d69e472702214ce85184142 to your computer and use it in GitHub Desktop.
#!/bin/bash
# ======================================================
# Simple one command installers for Fedora
# ======================================================
# Atom IDE
rm -f /tmp/atom.x86_64.rpm ; wget -O -q /tmp/atom.x86_64.rpm $(curl -sSL https://api.github.com/repos/atom/atom/releases/latest | sed 's/ //g' | grep '/atom.x86_64.rpm' | sed 's/"browser_download_url"://g' | sed 's/"//g') ; sudo dnf install -y /tmp/atom.x86_64.rpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment