kombinieren Sie Rohr und leiten Sie auf locken und jq um


11

Wenn ich mich zu einer Seite kräusele, kann ich direkt json bekommen:

curl http://httpbin.org/ip

{ "origin": "37.77.126.22"}

um zu verschönern, mache ich:

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

{
   "origin": "37.77.126.22"
}

Um es zu verschönern und zu speichern, leite ich um ... aber es funktioniert nicht

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

{
   "origin": "37.77.126.22"
}

(23) Failed writing body

Wie soll es gemacht werden?


Ich habe jq
Json

Dies funktionierte für mich
Kardamom

Antworten:


17

Ich bin ein wenig überrascht, dass Sie die JSON-Ausgabe im zweiten Beispiel erhalten. Gibt auf meinem System jqeine Fehlermeldung aus, die auch Verwendungsinformationen enthält:

$ 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

Der "Fehlerhafter Schreibkörper" stammt von curl, jqder aufgrund des Fehlers beendet wurde, und ist nicht zum Lesen des Körpers (Inhalt der Webseite) verfügbar.


jqbenötigt einen Filterausdruck. Der einfachste Filter ist .(Punkt), der sich wie ein "Pass-Through" -Filter verhält (was in den obigen Verwendungsinformationen als "Identitätsfilter" bezeichnet wird):

$ curl "http://httpbin.org/ip" | jq . >file

Ab Version 1.6 wird jqdavon ausgegangen, .dass es ohne Argumente ausgeführt wird.
JigglyNaga
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.