Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试以这种方式从 cygwin 终端执行 curl 脚本,
./curl-get-users
我在脚本中有网络服务请求。
响应未显示在控制台中。
这是从 cygwin 执行 curl 脚本的正确方法吗?
还是我应该在 cygwin 中使用任何其他软件包?
任何人都可以帮助我吗?
这是一个基本的例子:
bash <(curl -s http://www.mywebsite.com/script.txt)
所以,根据你的网址必须是:
bash <(curl -s http://localhost:8080/Sample/rest/users)