Abe Estrada
Posts
Status
Tags
About
Download all urls in a .txt file using curl:
while
read
-r url;
do
curl -O
"
$url
"
;
done
< urls.txt
8:50 AM ยท 08 Sep 2023