What does ‘–user’ mean with curl
Late to the party, but here goes… You can use curl with the -v (verbose) parameter to see the headers sent. You will then see that the information provided with –user is transformed into a header, such as: Authorization: Basic YWxhZGRpbjpvcGVuc2VzYW1l The text after the Basic keyword is a base64 encoded text string of the … Read more