I am trying to download a file from this link with wget.
https://sfirmware.com/downloads/downloader.php?fileid=257457&hash=458cd40aa7824c3d25fe096c0b01d4b7
I am aware that &
is a special character in shell environment.
So far i've tried double quote,single quote ,putting %26 replacing '&' (as per some suggestion) but the solution doesn't seem to work with this error-
Hash not exist in db!<a href="https://sfirmware.com/">Back to Home Page</a>
It seems the hash number from the link is ignoring while requesting.
How do I modify the code to download this file with wget?