mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 11:42:08 +02:00

* pages./: Automatically add alias pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages./: Automatically add links Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Fix false positives from script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
20 lines
621 B
Markdown
20 lines
621 B
Markdown
# curlie
|
|
|
|
> Curlie est un frontend pour curl qui ajoute la facilité d'utilisation de httpie.
|
|
> Plus d'informations : <https://github.com/rs/curlie>.
|
|
|
|
- Envoie une requête GET :
|
|
|
|
`curlie {{httpbin.org/get}}`
|
|
|
|
- Envoie une requête POST :
|
|
|
|
`curlie post {{httpbin.org/post}} {{name=john}} {{age:=25}}`
|
|
|
|
- Envoie une requête GET avec des paramètres de requête (par ex : `premier_param=5&deuxième_param=true`) :
|
|
|
|
`curlie get {{httpbin.org/get}} {{premier_param=5}} {{second_param=true}}`
|
|
|
|
- Envoie une requête GET avec un en-tête personnalisé :
|
|
|
|
`curlie get {{httpbin.org/get}} {{clef-d-en-tête:valeur-d-en-tête}}`
|