Blob Blame History Raw
#!/bin/bash

URL=http://jenkins.trisquel.info/icecat/binaries/langpacks/

for u in $URL
do
    mkdir -p langpacks && cd langpacks
    wget -erobots=off -c -r -l1 -nd -nc -A.xpi -U langpacks $u
    rm -f icecat-45.3.0.ja-JP-mac.langpack.xpi
    cd ../
    tar -zcvf icecat-45.3.0-langpacks.tar.gz langpacks
    rm -rf langpacks
done

exit 0