Files
general-scripts-and-system-…/customscripts/download_file_list_raw
T

9 lines
152 B
Bash

#!/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"