Skip to content

Instantly share code, notes, and snippets.

@ScottJWalter
Created March 6, 2025 09:49
Show Gist options
  • Save ScottJWalter/e63026d82e44610cb172950a95089487 to your computer and use it in GitHub Desktop.
Save ScottJWalter/e63026d82e44610cb172950a95089487 to your computer and use it in GitHub Desktop.
Update Firefox Developer Edition
#!/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