#!/bin/bash for P in capsot eirien oguz qavan zu-ann dkbrz ana-kuznetsova invo kmurphy techievena arghya marcriera do rm -rfv "$P" "$P.zip" "$P.tar.gz" mkdir -pv "$P" cp -av "$P.html" "$P/" done pushd capsot git clone --mirror https://github.com/apertium/apertium-fra git clone --mirror https://github.com/apertium/apertium-oci git clone --mirror https://github.com/apertium/apertium-oci-fra popd pushd eirien git clone --mirror https://github.com/apertium/apertium-kaz git clone --mirror https://github.com/apertium/apertium-sah git clone --mirror https://github.com/apertium/apertium-kaz-sah popd pushd oguz git clone --mirror https://github.com/apertium/apertium-tur git clone --mirror https://github.com/apertium/apertium-uig git clone --mirror https://github.com/apertium/apertium-uig-tur popd pushd qavan git clone --mirror https://github.com/apertium/apertium-chv git clone --mirror https://github.com/apertium/apertium-chv-tat popd pushd zu-ann git clone --mirror https://github.com/apertium/apertium-tat git clone --mirror https://github.com/apertium/apertium-bak git clone --mirror https://github.com/apertium/apertium-tat-bak popd pushd dkbrz git clone --mirror https://github.com/dkbrz/GSoC_2018 popd pushd ana-kuznetsova git clone --mirror https://github.com/ana-kuznetsova/apertium-grn git clone --mirror https://github.com/ana-kuznetsova/apertium-grn-spa popd pushd invo git clone --mirror https://github.com/MissingBytes/apertium-kan git clone --mirror https://github.com/MissingBytes/apertium-kan-mar popd pushd kmurphy git clone --mirror https://github.com/jonorthwash/ud-annotatrix popd pushd techievena git clone --mirror https://github.com/apertium/lttoolbox git clone --mirror https://github.com/apertium/apertium git clone --mirror https://github.com/apertium/apertium-lex-tools popd pushd arghya git clone --mirror https://github.com/apertium/apertium-python popd pushd marcriera git clone --mirror https://github.com/apertium/apertium-ron git clone --mirror https://github.com/apertium/apertium-cat git clone --mirror https://github.com/apertium/apertium-ron-cat popd for P in capsot eirien oguz qavan zu-ann dkbrz ana-kuznetsova invo kmurphy techievena arghya marcriera do zip -9r "$P.zip" "$P" tar -zcvf "$P.tar.gz" "$P" done