2011-11-07 93 views
4

當我向它傳遞包含括號的URL時(例如,在下面的維基百科鏈接中),cURL請求失敗。cURL失敗,包含括號的URL

sh: -c: line 0: syntax error near unexpected token `(' 
sh: -c: line 0: `curl -g --silent --max-time 5 --location http://en.wikipedia.org/wiki/Curl_(disambiguation)' 

我已經瀏覽了手冊頁,但找不到任何相關內容。有沒有辦法解決?

回答

10

使用雙引號:

curl -g --silent --max-time 5 --location "http://en.wikipedia.org/wiki/Curl_(disambiguation)"