Wrote myself up a simple bash script to use your bootstrap files. Don't know if it was posted before but here it is.
Thanks. I've not seen anything like that posted before.
Note that your script will break once we reach file 100, since it assumes the file numbers have 2 digits.
Noted

, and an easy fix. Thanks.
you should check for errors in case wget fails.
also a single:
cat bootstrap-*.dat >> bootstrap.dat
rm bootstrap-*.dat
after the loop is easier and faster, and you can do the "cat" only in case of no previous errors.
maybe killing the wallet before running this is also a good idea.
Thanks, I did it this way to keep it from using up a bunch of disk space for the downloads. Was unaware I could wildcard them all like that.