Expect

如何使用expect創建自動投票腳本?

  • September 24, 2012

我想在我的網站上測試自動投票保護(尚未發布)。

我找到了Expect程序,但我無法使用 telnet http 讓它工作。

我會使用“curl”命令行工具來做到這一點。我假設您有一個表單送出,其中一個欄位vote可以選擇ABC,例如:

curl -F vote=A http://example.com/submitvote/

或者,如果有一個名稱欄位,例如:

curl -F vote=C -F name="my name" http://example.com/submitvote/

引用自:https://unix.stackexchange.com/questions/48970