mirror of
https://github.com/Nezumi-2711/cloudflare-gateway-pihole-scripts.git
synced 2026-09-22 20:01:04 +00:00
9 lines
132 B
Bash
9 lines
132 B
Bash
#!/bin/bash
|
|
|
|
download_lists() {
|
|
urls=$1
|
|
output=$2
|
|
|
|
curl -sSfL --parallel --parallel-max 10 --retry 3 ${urls[@]} > $output
|
|
}
|