我正在尝试上传文件,表单看起来像这样:
<form action="" method="post" enctype="multipart/form-data">
<input name="sid" value="0" type="hidden">
<input name="action" value="backup" type="hidden">
<input name="command" value="restore" type="hidden">
<input tabindex="2" name="restore_file" type="file" size="40">
<input tabindex="3" class="wmo_button" value="Restore" type="submit">
</form>
表格位于网址“ https://172.21.0.200/?action=backup”上。 我已经尝试过:
curl -k -b ./scripts/cookies/sid --form restore_file=@config.cfg -H 'Content-Length: 3000' https://172.21.0.200/?action=backup
不起作用,并显示“错误577:内部服务器错误”。
如何使用curl上传文件?