in reply to Re^3: Perl's Net:Kubernetes question
in thread Perl's Net:Kubernetes question

Careful with this on OS X because of the default filesystem case insensitivity the LWP's HEAD is indistinguishable from the normal *NIX /usr/bin/head; you can use lwp-request -m HEAD https://www.google.com/ there instead to get the right thing.

The cake is a lie.
The cake is a lie.
The cake is a lie.

Replies are listed 'Best First'.
Re^5: Perl's Net:Kubernetes question
by hippo (Archbishop) on Nov 13, 2019 at 23:11 UTC
    on OS X because of the default filesystem case insensitivity

    In that regard I agree entirely with Linus's take.

Re^5: Perl's Net:Kubernetes question
by Anonymous Monk on Nov 13, 2019 at 17:13 UTC
    Thanks Fletch. I simply copy and paste that synopsis code block from LWP::UserAgent doc. page to test connection to google and it runs fine.