Handling shell sensitive characters in URL when using curl/httpie
Sometimes you want to request an URL from the command-line, but the URL contains characters bearing meaning in your shell.
$ curl --header Accept:application/json https://USERID:funkyPassMo|)@eksempel.dk/dostuff
-bash: syntax error near unexpected token '|'
Simply quote the URL when using curl
$ curl --header Accept:application/json \
"https://USERID:funkyPassMo|)@eksempel.dk/dostuff"
And if your special character is a quote "
, quote differently, use '
for example
$ curl --header Accept:application/json \
'https://USERID:funky"PassMo|)@eksempel.dk/dostuff'
See also: http://wiki.bash-hackers.org/syntax/quoting
Originally posted in my TIL collection
Top comments (0)