Special characters like @ and & in cURL POST data

前端 未结 6 1262
旧时难觅i
旧时难觅i 2020-12-07 18:52

How do I include special characters like @ and & in the cURL POST data? I\'m trying to pass a name and password like:

curl -d name=john passwd=@31&3*         


        
6条回答
  •  庸人自扰
    2020-12-07 19:09

    Try this:

    export CURLNAME="john:@31&3*J"
    curl -d -u "${CURLNAME}" https://www.example.com
    

提交回复
热议问题