Mirror Alpine 3.8

Snippet for mirroring alpine 3.8 packages - essentially x86_64.

If you are going to run it be sure to consider a different mirror, there may be one closer to you.

For rsync on Windows, I use cwRsync, click Free Rsync Client then download to find the download (at least as of 2022-10-30).

SET source=rsync://mirror.aarnet.edu.au/pub/alpine/v3.8
SET dest=D:/Downloads/Linux/alpine
cd D:
cd %dest%
D:\Programs\rsync\rsync.exe --verbose ^
       --archive ^
        --no-motd ^
        --update ^
        --hard-links ^
        --delete ^
        --delete-after ^
        --delay-updates ^
        --timeout=600 ^
        --exclude x86 --exclude aarch64 --exclude armhf  --exclude armv7 ^
        --exclude ppc64le --exclude s390x --exclude aarch64 ^
        --exclude releases ^
    %SOURCE% .