commit for archiving

This commit is contained in:
2025-08-27 09:03:01 +02:00
commit a163c80769
140 changed files with 49745 additions and 0 deletions

16
Perl/bin/ap-user-guide Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/perl -w
# This script will open up the ActivePerl User Guide in your
# web browser.
use strict;
use Config qw(%Config);
my $htmldir = $Config{installhtmldir} || "$Config{prefix}/html";
my $index = "$htmldir/index.html";
die "No HTML docs installed at $htmldir\n"
unless -f $index;
require ActiveState::Browser;
ActiveState::Browser::open($index);