#!/bin/sh # # No limits for prunednode.today, # worldwide fast # Courtesy of CloudFlare # (now free of IPFS). # # This shell script downloads # and extracts the zip on the # fly making it possible to run # a Bitcoin Core pruned node in # short time with no temporary # data stored. # # See also busybox.sh.txt. The same but with busybox unzip. # # Requirements: wget, bsdtar, ls URL=https://cfpages-limits.pages.dev mkdir -p bitcoin/wallets wget -O - -q $URL/files.txt | while read file do wget -qO - $URL/$file done | bsdtar -xvf- -C bitcoin ls -d bitcoin || exit 1