Last active
December 10, 2015 14:06
-
-
Save chrismarksus/07768f38453eb7d9d726 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
VERSION=${VERSION} | |
LOCAL=/path/to/ff/folder | |
FILE=firefox-{VERSION}.tar.bz2 | |
#URL=ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/{VERSION}/linux-x86_64/en-US/{FILE} | |
URL=https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/{VERSION}/linux-x86_64/en-US/{FILE} | |
## change this | |
PATH=/path/to/browsers/{VERSION}/firefox/firefox-bin | |
cd {LOCAL} | |
wget {URL} | |
tar xvf {LOCAL}{FILE} # if .bz2 | |
#tar xvfz {LOCAL}{FILE} #if zip | |
mv firefox {VERSION} | |
rm -rf {FILE} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment