moved helpers to lib directory

This commit is contained in:
Viet Huynh
2023-09-08 18:06:43 +07:00
parent 6cf50bddcf
commit 86a0f87f6d
3 changed files with 2 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
download_lists() {
urls=$1
output=$2
curl -sSfL --parallel --parallel-max 10 --retry 3 ${urls[@]} > $output
}