Hello people i have a question about how the 'curl' parser works in a linux commandline:
i work on a jokto-linux-system where i write commandline instructions:
I want to know what is the difference of with checkmarks '...' and without those.
commandline with checkmarks:
curl 'http://localhost:80/uri/?$sortby=name' > data.json
commandline without checkmarks:
curl -i http://localhost:80/uri/?$sortby=name > data.json
The command with the checkmarks bring me back a http 200OK and a sorted response in json format. the other command without checkmarks brings me too 200OK but the response is unsorted. I dont know the reason why.
Thanks for the feedback