How to download filenames only?

2005-06-02 Thread wierzbowski
Hi! Perhaps someone can help me craft a wget command that will accomplish the following. I want to mirror a website but I only want to download the directory structure and names of each file. I do not want to download the files themselves, but I need the names. A zero byte copy of each file would

Re: How to download filenames only?

2005-06-02 Thread Tushar Joshi
I presume wget needs to actually download the files otherwise how will it know what other files to link to (if it's a html file). However if you don't mind downloading the file and just want a 0 byte structure afterwards you could do something like this. find -type f -exec dd count=0

Fwd: How to download filenames only?

2005-06-02 Thread wierzbowski
Oops, I believe I did not send this to the whole list. -- Forwarded message -- From: wierzbowski [EMAIL PROTECTED] Date: Jun 2, 2005 1:28 PM Subject: Re: How to download filenames only? To: Tushar Joshi [EMAIL PROTECTED] Thank you (and Tony) for your suggestions. However