#!/usr/bin/perl -w # # Read in upgrade.log and get missing RPMS # # GH - 22.06.05 # use strict; use LWP::Simple; open(RPMS, "<", "./upgrade.log") or die "File not found or unreadable: $!\n"; my $url = 'http://download.fedora.redhat.com/pub/fedora/linux/core/4/i +386/os/Fedora/RPMS/'; while (<RPMS>) { chomp; print -e $_ ? "Already downloaded $_\n" : "Downloading $_\n"; next if (-e $_); getstore ($url . $_, $_); print -e $_ ? "Got $_\n" : "Download failed for $_\n"; } close(RPMS); print "Download complete.\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Downloading a lot of files
by ihb (Deacon) on Jun 23, 2005 at 23:47 UTC | |
|
Re: Downloading a lot of files
by davidrw (Prior) on Jun 24, 2005 at 01:40 UTC | |
by Corion (Patriarch) on Jun 24, 2005 at 06:57 UTC | |
|
Re: Downloading a lot of files
by fmerges (Chaplain) on Jun 24, 2005 at 12:37 UTC |