I'm trying to send curl POST like this. (It's for Slack Webhook)
curl -X POST --data-urlencode "payload={\"username\": \"name\", \"text\": \"Some alert! <https://some.alert.url/|Click Here.>\"}" https://some.channel.url
It Says
The filename, directory name, or volume label syntax is incorrect.
Including "<", "|" throws this error. Tried setting variable, "\<", and so on...
How could I send this url properly?