linux下使用shell发送http请求
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
本文主要介绍如何在linux下使用shell发送http请求。
一、curl
1. get请求
curl命令默认下就是使用get方式发送http请求。
curl www.baidu.com
2. post请求
使用-d参数,形式如下:
curl -d "param1=value1¶m2=value2" www.baidu.com
3.其他参数
-I
只显示头部信息。i
显示全部信息。- -v
显示解析全过程。
二、wget
该命令是linux下的从指定url下载文件的工具,会把请求的网页内容下载到本地。
1. get请求
//最基本使用
wget www.baidu.com
//get方式并指定下载的文件名
wget -O wordpress.zip http://www.linuxde.net/download.aspx?id=1080
2. post请求
wget --post-data="user=user1&pass=pass1&submit=Login" http://domain.com/path/page_need_login.php
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)