0

如何使用不在浏览器中的 shell 脚本访问 url ( http://www.localhost:8080 )。我只想运行我的应用服务器并测试

前任。sh example_test.sh

我试过这样,wget localhost:8080/myproj?ce=1234但它说Cannot write to `myproj?ce=1234' File name too long

4

2 回答 2

2

您可以尝试以下

content=$(wget http://localhost:8080 -q -O -)
echo $content

或者

content=$(curl -L http://localhost:8080)
echo $content
于 2013-11-07T09:09:53.287 回答
1

两个最流行的命令行工具:

  • 卷曲
  • wget
于 2013-11-07T09:06:35.857 回答