[identity profile] roman753.livejournal.com posting in [community profile] useful_faq
Имеется txt файл с 2000 url (на каждой строке по одному url). Как можно автоматизировать загрузку?

Date: 2012-10-09 07:03 am (UTC)
From: [identity profile] potan.livejournal.com
for i in `cat url_list.txt`
do
 if wget $i
 then
  echo $i >>Ok.txt
 else
  echo $i >>fail.txt
 fi
done

Date: 2012-10-10 06:56 pm (UTC)
From: [identity profile] aparella.livejournal.com
"Узнаю брата Колю!"
;)