web-dev-qa-db-fra.com

Comment télécharger un fichier .tar.gz à partir d'un lien redirigé dans le terminal?

Je souhaite télécharger le fichier à l'adresse http://www.snort.org/downloads/1806 sous la forme d'un fichier .tar.gz utilisant un terminal, mais le problème est que, lorsque j'utilise:

Sudo wget http://www.snort.org/downloads/1806

Il télécharge un fichier et le nomme 1806 mais ce n'est pas un dossier, pas un fichier .tar.gz que je peux extraire.

S'il vous plaît laissez-moi savoir comment puis-je faire cela depuis le terminal.

Cordialement.

4
Brown

De man wget:

   -O file
   --output-document=file
       The documents will not be written to the appropriate files, but all will be
       concatenated together and written to file.  If - is used as file, documents
       will be printed to standard output, disabling link conversion.  (Use ./- to
       print to a file literally named -.)

       Note that a combination with -k is only well-defined for downloading a single
       document.

 wget http://www.snort.org/downloads/1806 -O test.tar.gz 
 - 14: 43: 10-- http://www.snort.org/ téléchargements/1806 
 => 'test.tar.gz' 
 Résolution du problème www.snort.org ... 23.23.143.164 
 Connexion à www.snort.org | 23.23.143.164 |: 80 ... connecté. 
 Requête HTTP envoyée, en attente de réponse ... 302 trouvé 
 Emplacement: http://s3.amazonaws.com/snort-org/www/snort-current /20120718 W.. azs.com/s % 3D 
 => 'Test.tar.gz' 
 Résolution de s3.amazonaws.com ... 176.32.99.38 
 Connexion à s3.amazonaws.com | 176.32.99.38 | : 80 ... connecté. 
 Requête HTTP envoyée, en attente de réponse ... 200 OK 
 Longueur: 472 223 (461 Ko) [bin ary/octet-stream] 
 
 100% [=============================== ===========> 472 223 664,17K/s 
 
 14:43:13 (662.69 KB/s) - Sauvegarde "test.tar.gz" [472223] /472223]

$ tar tvfz test.tar.gz 
 Drwxr-xr-x 0/0 0 2012-07-10 19:51 daq-1.1.1/
 - rwxr-xr-x 0/0 13663 2012-07-10 19:32 daq-1.1.1/install-sh 
 - rw-r - r-- 0/0 20997 2010 -09-23 19:12 daq-1.1.1/COPYING 
 - rw-r - r-- 0/0 34823 2012-07-10 19:32 daq-1.1.1/aclocal.m4 
 - rw-r - r-- 0/0 22768 2012-07-10 19:33 daq-1.1.1/Makefile.in 
5
Rinzwind