I can get all files on the bash patches site by downloading them in a sequence:
SEQ=$(seq -f "%03g" 1 30)
for i in $SEQ; do
wget http://ftp.gnu.org/gnu/bash/bash-4.3-patches/bash43-$i;
done
But then I would have to know the maximum number.
Is there a possibility to just get the listing and extract all patchfiles for downloading?