Last active
December 9, 2016 07:17
-
-
Save thenets/969373207d69e472702214ce85184142 to your computer and use it in GitHub Desktop.
This file contains 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
#!/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