Descargar y extraer un .tar a un directorio específico

Descargar y extraer un .tar a un directorio específico

Quiero descargar un tar de un repositorio de git y extraer su contenido a otra carpeta.

La siguiente línea (dividida para mayor claridad) funciona:

curl -L -0 nt-dotfiles.tar.gz https://api.github.com/repos/nicktomlin/laptop/tarball \
 | tar --strip-components=1 -zx -C ~/Documents/dotfiles

pero da este error:

curl: (6) Could not resolve host: nt-dotfiles.tar.gz; nodename nor servname provided, or not known

Estoy de acuerdo con dejar las cosas como están (porque todavía funciona), pero tengo curiosidad por el error y me sentiría mejor si desapareciera.

¡Gracias!

Respuesta1

Su sintaxis debería ser: curl -L -o nt-dotfiles.tar.gz https://api. ... Está utilizando un cero en lugar de 'Oh' minúscula. Zero fuerza el curl para usar http1.0. 'o' proporciona un nombre de archivo de salida.

Desde la página de manual:

-0, --http1.0
          (HTTP)  Forces curl to issue its requests using HTTP 1.0 instead
          of using its internally preferred: HTTP 1.1. 


-o, --output <file>
          Write output to <file> instead of stdout. If you are using {} or
          [] to fetch multiple documents, you can use '#'  followed  by  a
          number  in  the <file> specifier. That variable will be replaced
          with the current string for the URL being fetched. Like in:

            curl http://{one,two}.site.com -o "file_#1.txt"

Respuesta2

Puedes intentar:

$ curl -s http://example.com/file.tgz | tar xvf - -C dest/

información relacionada