firefox/create-firefox-langpacks.sh
2025-05-18 21:02:13 +00:00

9 lines
303 B
Bash

#!/bin/sh
version=$1
wget -r -np -nH -R index.html https://ftp.mozilla.org/pub/firefox/releases/$version/linux-x86_64/xpi/
mkdir firefox-langpacks
find -name *.xpi | mv `xargs` firefox-langpacks/
tar -cJf firefox-langpacks-$version.tar.xz firefox-langpacks
rm -rf pub firefox-langpacks
rm -f robots.txt