zaidka / cliget

A Firefox addon to download login-protected files from the command line
https://addons.mozilla.org/en-US/firefox/addon/cliget/
Mozilla Public License 2.0
357 stars 57 forks source link

Adds the -g globoff option to curl #38

Closed LGD-Fr closed 6 years ago

LGD-Fr commented 8 years ago

Necessary when the url contain [...] or {...} : see the man page: -g, --globoff This option switches off the "URL globbing parser". When you set this option, you can specify URLs that contain the letters {}[] without having them being interpreted by curl itself. Note that these letters are not normal legal URL contents but they should be encoded according to the URI standard.

Without this the command ends with an error with URLs containing "[H264-AAC]" for instance, or curl would interpret it as a sequence of URLs if it can (with "[a-z]", "[005-100]" etc.)

LGD-Fr commented 8 years ago

Must fix the issue #28

zaidka commented 6 years ago

@LGD-Fr thanks for this. I made sure to take care of this issue in the new version.