add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/linux/curlie.md Normal file
View File

@@ -0,0 +1,20 @@
# curlie
> 一个前端工具,基于 `curl`,增加了 `httpie` 的易用性。
> 更多信息:<https://github.com/rs/curlie>。
- 发送 GET 请求:
`curlie {{httpbin.org/get}}`
- 发送 POST 请求:
`curlie post {{httpbin.org/post}} {{name=john}} {{age:=25}}`
- 发送带查询参数的 GET 请求(例如 `first_param=5&second_param=true`
`curlie get {{httpbin.org/get}} {{first_param==5}} {{second_param==true}}`
- 发送带自定义头部的 GET 请求:
`curlie get {{httpbin.org/get}} {{header-name:header-value}}`