The issue is that I need the files fetched at the time when I started the download, which are different from the ones that are currently on the server. The content has changed, and so continuing will overwrite the old files, which is not desirable. Is there a way to have Wget just convert the links of the downloaded files without attempting to download anything?
________________________________ From: Hrvoje Niksic [mailto:[EMAIL PROTECTED] Sent: Thu 9/22/2005 11:28 AM To: Youssef Eldakar Cc: [email protected] Subject: Re: Sleeping Processes "Youssef Eldakar" <[EMAIL PROTECTED]> writes: > Let's say I SIGTERM the processes: > > 1. Will there be a possibility that an incomplete file is written to > disk? Yes. > 2. Will there be a straightforward way to do the link conversion > afterwards on whatever files have been fetched? Try restarting the download, using -c along with your previous options. Or delete the incomplete file manually and use -nc (useful if the server doesn't support Range).
