Post
Topic
Board Announcements (Altcoins)
Re: [ANN][CLAM] CLAMs, Proof-Of-Chain, Proof-Of-Working-Stake, a.k.a. "Clamcoin"
by
zy0n
on 31/03/2016, 00:05:24 UTC
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 Tongue, 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.