You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of Chromium 131, the cURL command format from the "Copy as cURL (cmd)" button on the devtools Network tab has changed. The double-quotes surrounding URLs are now additionally escaped with carets: curl ^"https://www.example.com/^" ^
As of Chromium 131, the cURL command format from the "Copy as cURL (cmd)" button on the devtools Network tab has changed. The double-quotes surrounding URLs are now additionally escaped with carets:
curl ^"https://www.example.com/^" ^
See https://github.com/FlashpointProject/cURLsDownloader/blob/main/tests/example_curl.txt for the old format.
cURLsDownloader expects the delimiter between
curl
and the URL to have only space and double-quote characters:https://github.com/FlashpointProject/cURLsDownloader/blob/main/cURLsDownload.bat#L85
I cannot add
^
as another delimiter character because^
can also appear within URLs:https://github.com/FlashpointProject/cURLsDownloader/blob/main/tests/example_curl.txt#L8
So I don't currently see a simple way to fix this bug.
The text was updated successfully, but these errors were encountered: