abs-lang / abs

Home of the ABS programming language: the joy of shell scripting.
https://www.abs-lang.org
MIT License
510 stars 35 forks source link

Quoted parameters under windows not working #490

Open kpym opened 1 year ago

kpym commented 1 year ago

When I run the following script on Windows, it is fine:

ip = `curl -s https://api.ipify.org?format=json  | jq -rj .ip`
echo("your ip " + ip)

But when I run it with quotes, like in the original script, it returns nothing. Event when I try the following commands, the ip.ok is false:

So I think there is a problem with quoted arguments on Windows.