mirror of https://github.com/CrimsonTome/tldr.git
httpie: move to common; https: add alias page (#13492)
* httpie: delete osx page, move linux page to common Someone copied the linux page to osx instead of putting it in common. * https: add alias pagepull/28/head
parent
9b773a1e09
commit
574be9e065
|
@ -0,0 +1,7 @@
|
|||
# https
|
||||
|
||||
> Dieser Befehl ist ein Alias von `http`.
|
||||
|
||||
- Zeige die Dokumentation für den originalen Befehl an:
|
||||
|
||||
`tldr http`
|
|
@ -1,36 +0,0 @@
|
|||
# httpie
|
||||
|
||||
> Ein benutzerfreundliches HTTP-Tool.
|
||||
> Weitere Informationen: <https://github.com/httpie/httpie>.
|
||||
|
||||
- Sende eine GET-Anfrage (Standardmethode ohne Anfragedaten):
|
||||
|
||||
`http {{https://example.com}}`
|
||||
|
||||
- Sende eine POST-Anfrage (Standardmethode mit Anfragedaten):
|
||||
|
||||
`http {{https://example.com}} {{hello=World}}`
|
||||
|
||||
- Sende eine POST-Anfrage mit einer Datei als Eingabe:
|
||||
|
||||
`http {{https://example.com}} < {{file.json}}`
|
||||
|
||||
- Sende eine PUT-Anfrage mit einem bestimmten JSON-Body:
|
||||
|
||||
`http PUT {{https://example.com/todos/7}} {{hello=world}}`
|
||||
|
||||
- Sende eine DELETE-Anfrage mit einem bestimmten Anfrage-Header:
|
||||
|
||||
`http DELETE {{https://example.com/todos/7}} {{API-Key:foo}}`
|
||||
|
||||
- Zeige den gesamten HTTP-Austausch (sowohl Anfrage als auch Antwort):
|
||||
|
||||
`http -v {{https://example.com}}`
|
||||
|
||||
- Lade eine Datei herunter:
|
||||
|
||||
`http --download {{https://example.com}}`
|
||||
|
||||
- Folge Umleitungen und zeige Zwischenanfragen und -antworten:
|
||||
|
||||
`http --follow --all {{https://example.com}}`
|
|
@ -0,0 +1,7 @@
|
|||
# https
|
||||
|
||||
> Dit commando is een alias van `http`.
|
||||
|
||||
- Bekijk de documentatie van het originele commando:
|
||||
|
||||
`tldr http`
|
|
@ -1,36 +0,0 @@
|
|||
# httpie
|
||||
|
||||
> Een gebruiksvriendelijke HTTP-tool.
|
||||
> Meer informatie: <https://github.com/httpie/httpie>.
|
||||
|
||||
- Verstuur een GET-verzoek (standaardmethode zonder verzoekgegevens):
|
||||
|
||||
`http {{https://example.com}}`
|
||||
|
||||
- Verstuur een POST-verzoek (standaardmethode met verzoekgegevens):
|
||||
|
||||
`http {{https://example.com}} {{hello=World}}`
|
||||
|
||||
- Verstuur een POST-verzoek met omgeleide invoer:
|
||||
|
||||
`http {{https://example.com}} < {{bestand.json}}`
|
||||
|
||||
- Verstuur een PUT-verzoek met een opgegeven JSON-body:
|
||||
|
||||
`http PUT {{https://example.com/todos/7}} {{hello=world}}`
|
||||
|
||||
- Verstuur een DELETE-verzoek met een opgegeven verzoekheader:
|
||||
|
||||
`http DELETE {{https://example.com/todos/7}} {{API-Key:foo}}`
|
||||
|
||||
- Toon de hele HTTP-uitwisseling (zowel verzoek als antwoord):
|
||||
|
||||
`http -v {{https://example.com}}`
|
||||
|
||||
- Download een bestand:
|
||||
|
||||
`http --download {{https://example.com}}`
|
||||
|
||||
- Volg redirects en toon tussenliggende verzoeken en antwoorden:
|
||||
|
||||
`http --follow --all {{https://example.com}}`
|
|
@ -0,0 +1,7 @@
|
|||
# https
|
||||
|
||||
> This command is an alias of `http`.
|
||||
|
||||
- View documentation for the original command:
|
||||
|
||||
`tldr http`
|
|
@ -1,36 +0,0 @@
|
|||
# httpie
|
||||
|
||||
> A user friendly HTTP tool.
|
||||
> More information: <https://github.com/httpie/httpie>.
|
||||
|
||||
- Send a GET request (default method with no request data):
|
||||
|
||||
`http {{https://example.com}}`
|
||||
|
||||
- Send a POST request (default method with request data):
|
||||
|
||||
`http {{https://example.com}} {{hello=World}}`
|
||||
|
||||
- Send a POST request with redirected input:
|
||||
|
||||
`http {{https://example.com}} < {{file.json}}`
|
||||
|
||||
- Send a PUT request with a given JSON body:
|
||||
|
||||
`http PUT {{https://example.com/todos/7}} {{hello=world}}`
|
||||
|
||||
- Send a DELETE request with a given request header:
|
||||
|
||||
`http DELETE {{https://example.com/todos/7}} {{API-Key:foo}}`
|
||||
|
||||
- Show the whole HTTP exchange (both request and response):
|
||||
|
||||
`http -v {{https://example.com}}`
|
||||
|
||||
- Download a file:
|
||||
|
||||
`http --download {{https://example.com}}`
|
||||
|
||||
- Follow redirects and show intermediary requests and responses:
|
||||
|
||||
`http --follow --all {{https://example.com}}`
|
Loading…
Reference in New Issue