2017-08-26 13:25:27 +10:00
|
|
|
mkdir mnt torrents
|
2017-08-29 14:02:30 +10:00
|
|
|
umount mnt
|
|
|
|
set -e
|
2017-08-27 14:03:10 +10:00
|
|
|
GOPPROF=http godo github.com/anacrolix/torrent/cmd/torrentfs -mountDir=mnt -metainfoDir=torrents &
|
2017-08-26 13:25:27 +10:00
|
|
|
cd torrents
|
2017-10-12 17:52:15 +11:00
|
|
|
wget -c https://cdimage.debian.org/cdimage/archive/9.1.0/amd64/bt-cd/debian-9.1.0-amd64-netinst.iso.torrent
|
2017-08-29 14:02:30 +10:00
|
|
|
echo 'magnet:?xt=urn:btih:6a9759bffd5c0af65319979fb7832189f4f3c35d&dn=sintel.mp4' > sintel.magnet
|
2017-08-26 13:25:27 +10:00
|
|
|
cd ..
|
2017-08-29 14:02:30 +10:00
|
|
|
file=debian-9.1.0-amd64-netinst.iso
|
|
|
|
# file=sintel.mp4
|
2017-08-27 14:03:10 +10:00
|
|
|
while [ ! -e "mnt/$file" ]; do sleep 1; done
|
|
|
|
pv "mnt/$file" | md5sum
|
2017-09-18 13:51:05 +10:00
|
|
|
sudo umount mnt
|
2017-09-18 12:17:28 +10:00
|
|
|
wait
|