Skip to content

Instantly share code, notes, and snippets.

@raelga
Last active August 29, 2015 14:00
Show Gist options
  • Save raelga/11396722 to your computer and use it in GitHub Desktop.
Save raelga/11396722 to your computer and use it in GitHub Desktop.
Install Last Firefox
#!/bin/bash
export URL="http://releases.mozilla.org/pub/mozilla.org/firefox/releases/latest/linux-x86_64/en-GB/";
mkdir -p /opt/mozilla/;
curl -L `curl -L $URL | sed -n 's@.*\(firefox-.*tar.bz2\)<.*@'$URL'/\1@p'` | sudo tar -jx -C /opt/mozilla/;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment