AROS World Exec
Development => Development (General) => Topic started by: damir on September 25, 2022, 06:22:09 AM
-
In AmigaDOS, how do I escape double quotes?
For example if I want to write JSON:
echo "{"hello":"world"}"
I get:
{ hello":"world"}"
Or more specific I need to send something like this in curl:
curl -d '{"email":"yyy@yyy.com","password":"44444444"}' -H 'Content-Type: application/json' https://target/login
-
In AmigaDOS, how do I escape double quotes?
For example if I want to write JSON:
echo "{"hello":"world"}"
I get:
{ hello":"world"}"
Or more specific I need to send something like this in curl:
curl -d '{"email":"yyy@yyy.com","password":"44444444"}' -H 'Content-Type: application/json' https://target/login
Try *" to escape "
Looks strange, but afair it was sth like that.
-
Thanks!