combinam pipe e redirecionam em curl e jq

5

Se eu enrolar para algum site, posso ir direto json:

curl http://httpbin.org/ip

{ "origin": "37.77.126.22"}

para embelezar, eu faço:

curl http://httpbin.org/ip | jq

{
   "origin": "37.77.126.22"
}

para embelezar e salvar, eu redireciono ... mas não funciona

curl http://httpbin.org/ip | jq > output.txt

{
   "origin": "37.77.126.22"
}

(23) Failed writing body

Como isso deve ser feito?

    
por Piero dS 25.05.2017 / 10:03

1 resposta

5

Estou um pouco surpreso por você obter a saída JSON no segundo exemplo. No meu sistema, jq exibe uma mensagem de erro que também contém informações de uso:

$ curl "http://httpbin.org/ip" | jq >file
jq - commandline JSON processor [version 1.5]
Usage: jq [options] <jq filter> [file...]

        jq is a tool for processing JSON inputs, applying the
        given filter to its JSON text inputs and producing the
        filter's results as JSON on standard output.
        The simplest filter is ., which is the identity filter,
        copying jq's input to its output unmodified (except for
        formatting).
        For more advanced filters see the jq(1) manpage ("man jq")
        and/or https://stedolan.github.io/jq

        Some of the options include:
         -c             compact instead of pretty-printed output;
         -n             use 'null' as the single input value;
         -e             set the exit status code based on the output;
         -s             read (slurp) all inputs into an array; apply filter to it;
         -r             output raw strings, not JSON texts;
         -R             read raw strings, not JSON texts;
         -C             colorize JSON;
         -M             monochrome (don't colorize JSON);
         -S             sort keys of objects on output;
         --tab  use tabs for indentation;
         --arg a v      set variable $a to value <v>;
         --argjson a v  set variable $a to JSON value <v>;
         --slurpfile a f        set variable $a to an array of JSON texts read from <f>;
        See the manpage for more options.
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100    33  100    33    0     0    115      0 --:--:-- --:--:-- --:--:--   136
(23) Failed writing body

O "Corpo da escrita falhada" vem de curl as jq saiu e não está disponível para ler o corpo (conteúdo da página da web).

jq precisa de uma expressão de filtro. O filtro mais simples é . (ponto), que age como um filtro "pass-through" (o que é chamado de "filtro de identidade" nas informações de uso acima):

$ curl "http://httpbin.org/ip" | jq . >file
    
por 25.05.2017 / 10:09

Tags