curl常用命令行總結

2022-03-04 13:21:46 字數 829 閱讀 1006

有時http服務介面寫完,需要驗證下介面功能,這個使用用curl最合適了

curl 全稱 command line url viewer

curl www.taobao.com

curl www.baidu.com # 站點內容

curl -o baidu.html www.baidu.com # 檔案儲存

curl -l www.taobao.com # 存在跳轉時可以用l引數

curl -i www.sina.com # 顯示頭資訊 + 內容

curl -i www.taobao.com # 只顯示頭

curl -v www.taobao.com # 顯示通訊過程

curl --trace output.text www.taobao.com # 顯示二進位制細節

curl --trace-ascii output.text www.taobao.com # 顯示ascii細節

-x 這個引數可以配置http的方法

curl -x post 127.0.0.1:7001/api/material/update

curl -x post --data "name=kk&name2=gg" 127.0.0.1:7001/api/material/create # 帶引數的post提交

curl --referer

# referer

curl —user-agent 「useragent」 www.taobao.com

curl -c cookie_output # 儲存cookie

curl -b cookies_input # 使用cookie file 發請求

常用命令行總結

conda v 檢視anaconda版本 conda list 檢視anaconda配置 conda info e 檢視anaconda環境 python v 檢視python版本 conda activate ananconda環境名 啟用指定環境 conda create name tensor...

mysql常用命令行 mysql常用命令行操作語句

第一招 mysql服務的啟動和停止 net stop mysql net start mysql 第二招 登陸mysql 語法如下 mysql u使用者名稱 p使用者密碼 鍵入命令mysql uroot p,回車後提示你輸入密碼,輸入12345,然後回車即可進入到mysql中了,mysql的提示符是...

Kafka常用命令行總結

以下是kafka常用命令行總結 1.檢視topic的詳細資訊 kafka topics.sh zookeeper 127.0.0.1 2181 describe topic testkj1 2 為topic增加副本 kafka reassign partitions.sh zookeeper 127...