我可以设置curl的默认主机名吗?


0

当我使用curl在工作站上测试Web服务时,我想减少按键操作。

有没有一种方法可以将默认主机名'localhost:3000'设置为〜/ .curlrc,以便以下工作有效?

curl /foo.json

Answers:


1

在Unix上-Shell函数:

cu() { curl "http://localhost:3000/$1"; }

cu foo.json将被翻译为curl http://localhost:3000/foo.json

缺点:需要更多的代码来支持选项(curl -I和内容),但这也可以实现。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.