1

I would like to send POST message using bash script.In body there should be image but i don't know how to put them.

1 Answers1

2

You can use cURL for that:

curl -F File=@/path/to/your/file http://your.url

If that does not work, please add more details to your question.

topskip
  • 16,207
  • 15
  • 67
  • 99