2

Я хочу скачать tar из git repo и извлечь его содержимое в другую папку.

Следующая строка (разбитая для ясности) работает:

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

но дает дает эту ошибку:

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

Я в порядке, если оставить все как есть (потому что оно все еще работает), но мне любопытно, что будет с ошибкой, и я чувствую себя лучше, если она исчезнет.

Спасибо!

2 ответа2

7

Ваш синтаксис должен быть следующим: curl -L -o nt-dotfiles.tar.gz https://api. ... Вы используете ноль вместо нижнего регистра «О». Ноль заставляет curl использовать http1.0. «o» предоставляет имя выходного файла.

Со страницы руководства:

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

Вы можете попробовать:

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

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .