Randy Bush <[EMAIL PROTECTED]> writes: > using > > DIR=/usr/local/www/share/ietfops/dns/dynupd > cd $DIR > /usr/local/bin/wget \ > --mirror http://some.site/dnssec/ \ > --directory-prefix=$DIR \ > --no-directories \ > --convert-links > > to fetch a file which contains > > <link rel="stylesheet" href="secure-ddns-howto.css" type="text/css"> > > and it is getting converted to > > <link rel="stylesheet" >href="/usr/local/www/share/ietfops/dns/dynupd/secure-ddns-howto.css" type="text/css"> > > i.e. localization is being overapplied.
That happens when you use the `-P' option. Since you're already in that directory, the option is unnecessary -- just drop it.
