Download Atom without invite
pastebin.com
Download Atom without invite
1–10 of 10 posts
Re: Download Atom without invite
#2Re: Download Atom without invite
#3Re: Download Atom without invite
#4Any instructions for linux?
Re: Download Atom without invite
#5Any instructions for linux?
At the moment Atom only runs on OS X (10.8 or later). Windows and Linux releases are on the roadmap."
Re: Download Atom without invite
#6Here's a version that worked for me
#!/bin/sh
cd ~
curl -L --insecure https://www.atom.io/api/updates/download -A "Atom/0.1 CFNetwork/1.5" > Atom.zip
unzip Atom.zip
mv Atom.app /Applications/
rm -rf Atom.zipRe: Download Atom without invite
#7Nice idea, but for me this 5 line mac-specific shell script had two errors. Did anyone actually try this? Here's a version that worked for me #!/bin/sh cd ~ curl -L --insecure https://www.atom.io/api/updates/download -A "Atom/0.1 CFNetwork/1.5" > Atom.zip unzip Atom.zip mv Atom.app /Applications/ rm -rf Atom.zip
Re: Download Atom without invite
#8Nice idea, but for me this 5 line mac-specific shell script had two errors. Did anyone actually try this? Here's a version that worked for me #!/bin/sh cd ~ curl -L --insecure https://www.atom.io/api/updates/download -A "Atom/0.1 CFNetwork/1.5" > Atom.zip unzip Atom.zip mv Atom.app /Applications/ rm -rf Atom.zip
[deleted]
Re: Download Atom without invite
#9Re: Download Atom without invite
#10Nice idea, but for me this 5 line mac-specific shell script had two errors. Did anyone actually try this? Here's a version that worked for me #!/bin/sh cd ~ curl -L --insecure https://www.atom.io/api/updates/download -A "Atom/0.1 CFNetwork/1.5" > Atom.zip unzip Atom.zip mv Atom.app /Applications/ rm -rf Atom.zip