The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
map {
	print "$_\n";
	my ($id) = /ID(\d+)/;
	if ($id)
	{
	  my $cmd= "sabcmd ./xsl/node.xsl $_  ~/nodes/index/html/ID$1.HTML \n";
	  system $cmd;
	  print $cmd;
	}
    } glob("~/nodes/index/*");