weed | Est il possible de telecharger un repertoire entier avec Wget. J'aimerais meme telecharger l'integralité d'un ftp avec wget.
Mais le souci entre autre et que le mot de passe est : xA.:xRSb1xl>H
Le mot de pass est normallement est enregistré dans une variable dans un fichier externe : PASSWD='xA.:xRSb1xl\>H'
Comment faut il s'y prendre ?
J'ai essayé
wget -m ftp://62.23.x.y --http-user='ftp_login' --http-passwd='xA.:xRSb1xl\>H'
wget -m ftp://ftp_login:='xA.:xRSb1xl\>H'@62.23.x.y
wget -m ftp://ftp_login:=xA.:xRSb1xl>H@62.23.x.y |
J'ai essayé wget -m -d ftp://62.23.x.y --http-user='ftp_login' --http-passwd='xA.:xRSb1xl\>H' |
avec l'option debug et ca a l'air de bien s'authentifier ?
Non ?
Code :
- $ wget -m -d ftp://62.23.x.y --http-user='ftp_login' --http-passwd='xA.:xRSb1xl\>H'
- DEBUG output created by Wget 1.9.1 on linux-gnu.
- Using `62.23.2.77/.listing' as listing tmp file.
- --11:09:32-- ftp://62.23.2.77/
- => `62.23.2.77/.listing'
- Connecting to 62.23.2.77:21... connected.
- Created socket 3.
- Releasing 0x8097300 (new refcount 0).
- Deleting unused 0x8097300.
- Logging in as anonymous ... 220 Microsoft FTP Service
- --> USER anonymous
- 331 Anonymous access allowed, send identity (e-mail name) as password.
- --> PASS -wget@
- 230 Anonymous user logged in.
- Logged in!
- ==> SYST ...
- --> SYST
- 215 Windows_NT
- done. ==> PWD ...
- --> PWD
- 257 "/" is current directory.
- done.
- ==> TYPE I ...
- --> TYPE I
- 200 Type set to I.
- done. ==> CWD not needed.
- ==> PASV ...
- --> PASV
- 227 Entering Passive Mode (62,23,2,77,*,120).
- Created socket 4.
- done. ==> LIST ...
- --> LIST
- 125 Data connection already open; Transfer starting.
- done.
- [ <=> ] 0 --.--K/s
- Closing fd 4
- 226 Transfer complete.
- 11:09:32 (0.00 B/s) - `62.23.*.77/.listing' saved [0]
- --11:09:32-- ftp://62.23.2.77/
- => `62.23.2.77/index.html'
- ==> CWD not required.
- ==> PASV ...
- --> PASV
- 227 Entering Passive Mode (62,23,2,77,*,121).
- Created socket 4.
- done. ==> RETR ...
- --> RETR
- 501 'RETR ': Invalid number of parameters
- No such file `'.
- Closing fd 4
- Closing fd 3
- FINISHED --11:09:32--
- Downloaded: 0 bytes in 1 files
|
Message édité par weed le 30-05-2006 à 23:30:42
|