save remote files
You have hundreds of urls in url-list2.txt. This script will store all html code (from these sites) in ffff2.txt. For example : you can later extract the urls of them. This saves a lot of time.
open (ERSTE, "url-list2.txt") || die "file not found\n"; @urls =
; close (ERSTE); foreach (@urls) { use LWP::Simple; $url=$_; $rueckgabewert=get($url); open (FULLrt1rt, ">>ffff2.txt") || die "file not found\n"; print FULLrt1rt "$rueckgabewert"; close (FULLrt1rt); }