Skip to content

Instantly share code, notes, and snippets.

@ashishb
Created March 3, 2014 20:46
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 ashishb/9334297 to your computer and use it in GitHub Desktop.
Save ashishb/9334297 to your computer and use it in GitHub Desktop.
Install atom without invite
#!/bin/sh
# Install Atom directly without invitation
# by @leaskh
cd ~
curl -L https://www.atom.io/api/updates/download -A "Atom/0.1 CFNetwork/1.5" > Atom.zip
open Atom.zip
mv Atom.app /Applications/
rm -rf Atom.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment