Can's seem to get a variable to expand within a cURL option.
I've tried various approaches including the following:
curl -X POST http://localhost:9047/api/v3/sql \
-H 'Authorization: ${mytoken} ' \
curl -X POST http://localhost:9047/api/v3/sql \
-H 'Authorization: "'"$mytoken"'" ' \
Appreciate any suggestions.