I\'m trying to use curl in bash to download a webpage, but the & symbol in the URL isn\'t interpreted as a character as I would like. Any ideas on how I can
&
You can use %26 instead &. The entity code will work fine.
%26