Created
December 15, 2014 04:58
-
-
Save scmorrison/8f08bd8bd38d8d075652 to your computer and use it in GitHub Desktop.
Install / update stock Firefox on debian
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 | |
cd /tmp/ | |
wget ftp://ftp.mozilla.org/pub/firefox/releases/latest/linux-x86_64/en-US/firefox-*tar.bz2 -O firefox-latest.tar.bz2 | |
tar xjf firefox-latest.tar.bz2 | |
[ -d /opt/firefox ] && sudo rm -rf /opt/firefox | |
sudo mv firefox /opt/firefox | |
rm firefox-latest.tar.bz2 | |
rm ~/bin/firefox | |
ln -s /opt/firefox/firefox ~/bin/firefox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment