added raw list download fixed sum shit too

This commit is contained in:
2025-12-20 12:08:02 -07:00
parent bf05377670
commit b661dc3efb
4 changed files with 29 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
links_file_tmp=$(mktemp)
nano "$links_file_tmp"
cat "$links_file_tmp" | \
while read line; do
wget "$line"
done
rm -f "$links_file_tmp"