Quoting [EMAIL PROTECTED] ([EMAIL PROTECTED]):
> My problem is that when I look at my downloaded files (on my unix
> system) I see %20 instead of the spaces in the filenames ! Is there
> an option to download the file without changing the spaces into %20,
> or anything else to solve this problems ?
I do not think that there is a simple workaround in wget configuration
for this. You may however always try a simple shell-script that
replaces every %20 in the file name with space:
| #!/bin/sh
| for i in `find . -name '*.html'` ; do
| j=`echo $i | sed 's/%20/ /g'`
| mv $i "$j"
| done
-- jan
-----------------------------------+----------------------------------------
Jan Prikryl icq | vr|vis center for virtual reality and
<[EMAIL PROTECTED]> 83242638 | visualisation http://www.vrvis.at
-----------------------------------+----------------------------------------