I'm using wget currently several hours ... ( don't stop reading )
Yes, and if that is not bug , or i did st. wrong , please mail me back.
option -E == html_extension = on
is totaly useless together with -nd == dirstruct =off
try :
wget -r -l1 -E -nd www.yahoo.com
and watch all those index.html are going to write one over the other
bash-2.04$ wget -r -l1 -E -nd www.yahoo.com
13:16:48 URL:http://www.yahoo.com/ [14887] -> "index.html" [1]
13:16:51 URL:http://calendar.yahoo.com/ [13439] -> "index.html.1.html" [1]
13:16:54 URL:http://messenger.yahoo.com/ [12297] -> "index.html.1.html" [1]
13:16:57 URL:http://mail.yahoo.com/ [10926] -> "index.html.1.html" [1]
13:16:59 URL:http://dir.yahoo.com/new/ [12394] -> "index.html.1.html" [1]
13:17:02 URL:http://my.yahoo.com/ [43060] -> "index.html.1.html" [1]
13:17:05 URL:http://help.yahoo.com/ [12849] -> "index.html.1.html" [1]
13:17:08 URL:http://mail.yahoo.com/ [10926] -> "index.html.1.html" [1]
13:17:11 URL:http://education.yahoo.com/ [13724] -> "index.html.1.html" [1]
13:17:14 URL:http://search.yahoo.com/search/options?p= [3587] -> "options?p=.html" [1]
13:17:16 URL:http://football.fantasysports.yahoo.com/ [3601] -> "index.html.1.html" [1]
13:17:20 URL:http://auctions.yahoo.com/ [33816] -> "index.html.1.html" [1]
13:17:21 URL:http://auctions.yahoo.com/phtml/auc/us/charity/images5/all_star.gif
[3172/3172] -> "all_star.gif" [1]
.....cut-here ^C
On the other hand - this looks little better -
index files will all survive whole process .
(Well , ok , it's not perfect ,
files don't end with .html as you usually want. )
bash-2.04$ wget -r -l1 -nd www.yahoo.com
13:18:13 URL:http://www.yahoo.com/ [14887] -> "index.html" [1]
13:18:16 URL:http://calendar.yahoo.com/ [13439] -> "index.html.1" [1]
13:18:19 URL:http://messenger.yahoo.com/ [12297] -> "index.html.2" [1]
13:18:21 URL:http://mail.yahoo.com/ [10926] -> "index.html.3" [1]
13:18:24 URL:http://dir.yahoo.com/new/ [12394] -> "index.html.4" [1]
13:18:27 URL:http://my.yahoo.com/ [43060] -> "index.html.5" [1]
13:18:30 URL:http://help.yahoo.com/ [12849] -> "index.html.6" [1]
....
I don't know what all .rc are read through wget , hope this is so simple
that no debug print's are needed. You can get your one's also.
Hi Suk