Move pages in the correct folder (#11163)

This commit is contained in:
Magrid
2023-10-23 22:27:11 +02:00
committed by GitHub
parent 4e53530691
commit 08f3800766
16 changed files with 43 additions and 114 deletions

View File

@@ -1,12 +0,0 @@
# google-chrome
> Der Webbrowser von Google.
> Weitere Informationen: <https://chrome.google.com>.
- Starte mit einem benutzerdefinierten Profilverzeichnis:
`google-chrome --user-data-dir={{pfad/zu/verzeichnis}}`
- Starte ohne CORS-Validierung, nützlich zum Testen einer API:
`google-chrome --user-data-dir={{pfad/zu/verzeichnis}} --disable-web-security`

36
pages.de/linux/httpie.md Normal file
View File

@@ -0,0 +1,36 @@
# 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}}`