Baixando e extraindo um .tar para um diretório específico

Baixando e extraindo um .tar para um diretório específico

Quero baixar um tar de um repositório git e extrair seu conteúdo para outra pasta.

A seguinte linha (dividida para maior clareza) funciona:

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

mas dá dá esse erro:

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

Não há problema em deixar as coisas como estão (porque ainda funciona), mas estou curioso sobre o erro e me sentiria melhor se ele desaparecesse.

Obrigado!

Responder1

Sua sintaxe deve ser: curl -L -o nt-dotfiles.tar.gz https://api. ... Você está usando zero em vez de 'Oh' minúsculo. Zero força o curl para usar http1.0. 'o' fornece um nome de arquivo de saída.

Na 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"

Responder2

Você pode tentar:

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

informação relacionada