more setuppp 3

This commit is contained in:
2025-08-23 18:07:31 -06:00
parent 4dad8c57c0
commit 115baf29cb
2 changed files with 41 additions and 22 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
# tmp links file
tmpfile="/tmp/links.tmp"
# get links
nano "$tmpfile"
# download to .
cat "$tmpfile" | while read line; do
wget "$line"
done
# cleanup
rm -f "$tmpfile" 1>/dev/null 2>&1 # suppress errors or output