14 lines
409 B
Bash
14 lines
409 B
Bash
#!/usr/bin/env bash
|
|
|
|
cd /data
|
|
|
|
sed -i 's|deb.debian.org|mirrors.ustc.edu.cn|g' /etc/apt/sources.list.d/debian.sources
|
|
apt update && apt install -y wget
|
|
|
|
for i in {1..20}; do
|
|
EP=$(printf "%02d" $i)
|
|
for j in {1..1000}; do
|
|
FILE=$(printf "%07d" $j)
|
|
wget --referer=https://www.bilivod.com/ -rc https://c1.rrcdnbf2.com/video/xiarilidechuntian/第${EP}集/${FILE}.ts || continue
|
|
done
|
|
done |