💾 Archived View for sdf.org › blippy › perl.gmi captured on 2023-01-29 at 16:11:17. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

PERL

Created 2022-09-08 Updated 2022-12-06

CPAN

Dead simple to install:

cpan Text::Format # or whatever module you want to install

Execute script

my $output = `script.sh --option`;

given (like switch)

use feature qw(switch);
no warnings 'experimental'; # at least for v5.32.1

given ($scheme) {
        when("gemini")  { print "found gemini"; }
        default         { print "using default"; }
}