The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl

use lib '../lib', 'lib';

BEGIN {
    @ARGV = ('http://www.gutenberg.org/cache/epub/1661/pg1661.txt');
}

use ARGV::URL;

while (<>) {
    print "$.: $_" if /Sherlock/;
}