Neste comando:
curl -d param1=value1 -d param2=value2 http://example.com/submit
Se value1 estiver localizado em file1.txt , como posso fazer cURL incluir file1.txt no comando?
value1
file1.txt
Algo como isso deve fazer o truque: curl -d param="$(cat file1.txt)" ...
curl -d param="$(cat file1.txt)" ...
Tags curl