Email or username:

Password:

Forgot your password?
(λ. borkdude)

Any Windows 11 users out here? What output do you get when running:

curl --version

and

curl --compressed clojure.org

I'm trying to figure out if the default Windows 11 cron supports compression now. It's about time?

/cc @bagder

6 comments
Martin

@borkdude

curl 7.83.1 (Windows) libcurl/7.83.1 Schannel
Release-Date: 2022-05-13
Protocols: dict file ftp ftps http https imap imaps pop3 pop3s smtp smtps telnet tftp
Features: AsynchDNS HSTS IPv6 Kerberos Largefile NTLM SPNEGO SSL SSPI UnixSockets

curl: option --compressed: the installed libcurl version doesn't support this
curl: try 'curl --help' for more information

Bobbi Towers

@borkdude @bagder In WSL or Powershell? In WSL, I pasted my output here: gist.github.com/BTowersCoding/ In Powershell (installed with Scoop) it gives an error because it must use a different syntax:

curl : The remote name could not be resolved: '--version'
At line:1 char:1
+ curl --version
+ ~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invo
ke-WebRequest], WebException
+ FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.Invoke
WebRequestCommand

@borkdude @bagder In WSL or Powershell? In WSL, I pasted my output here: gist.github.com/BTowersCoding/ In Powershell (installed with Scoop) it gives an error because it must use a different syntax:

curl : The remote name could not be resolved: '--version'
At line:1 char:1
+ curl --version
+ ~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invo
ke-WebRequest], WebException
...

(λ. borkdude)

BTowersCoding@functional.cafe @bagder

Not WSL or powershell, just cmd.exe

Bobbi Towers

@borkdude @bagder

C:\>curl --version
curl 7.83.1 (Windows) libcurl/7.83.1 Schannel
Release-Date: 2022-05-13
Protocols: dict file ftp ftps http https imap imaps pop3 pop3s smtp smtps telnet tftp
Features: AsynchDNS HSTS IPv6 Kerberos Largefile NTLM SPNEGO SSL SSPI UnixSockets

C:\>curl --compressed clojure.org
curl: option --compressed: the installed libcurl version doesn't support this
curl: try 'curl --help' for more information

Go Up