Skip to content

Instantly share code, notes, and snippets.

@mlocher
Created March 17, 2015 16:57
Show Gist options
  • Save mlocher/418fc16c7fd1c48d2fb6 to your computer and use it in GitHub Desktop.
Save mlocher/418fc16c7fd1c48d2fb6 to your computer and use it in GitHub Desktop.
Install a custom Firefox version
#!/bin/sh
VERSION="28.0"
rm -rf "${HOME}/firefox"
wget -O "${HOME}/firefox.tar.bz2" "https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${VERSION}/linux-x86_64/en-US/firefox-${VERSION}.tar.bz2"
tar -xaf "${HOME}/firefox.tar.bz2" --directory "${HOME}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment