# 上傳文件
curl -u ftpuser:ftppw -T myfile.txt ftp://ftp_server/public_html/
# 上傳多個文件
curl -u ftpuser:ftppw -T "{myfile1.txt, myfile2.txt}" ftp://ftp_server/public_html/
可行命令:
//上傳一個文件
curl -F "filename=@xxxxxx.jpg" http://192.168.3.169:8080/upload
//上傳多個文件? 待驗證柬焕。
curl -F "filename={xxx.jpg, xxx.jpg}" http://192.168.3.169:8080/upload
雖然能發(fā)送上傳多個的命令但是不知道服務端如何解析叫胁,仍然是上傳不成功猎塞。
//登錄
curl -d "userName=123&password=123" http://192.168.3.169:8080/login
參考鏈接:
http://me.iblogc.com/2015/12/17/curl%E5%B8%B8%E7%94%A8%E5%91%BD%E4%BB%A4/