Created
March 6, 2025 09:49
-
-
Save ScottJWalter/e63026d82e44610cb172950a95089487 to your computer and use it in GitHub Desktop.
Update Firefox Developer Edition
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 | |
rm -rf ~/.ffd-tmp && mkdir -p ~/.ffd-tmp && pushd ~/.ffd-tmp | |
wget -O firefox-developer.tar.xz https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US | |
sudo mv /opt/firefox ./firefox.bak | |
sudo find . -type d -exec chmod 777 {} \; | |
sudo find . -type f -exec chmod 777 {} \; | |
sudo tar -xf firefox-developer.tar.xz -C /opt | |
popd | |
rm -rf ~/.ffd-tmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment