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

9 lines
218 B
Bash

#!/bin/bash
links_file_tmp=$(mktemp)
nano "$links_file_tmp"
cat "$links_file_tmp" | \
while read line; do
wget -nc "$line" # nc = no clobber, fail if file exists no rename no overwrite
done
rm -f "$links_file_tmp"