6 for my $text (<*.txt
>) {
7 open I
, '<', $text || die "cannot read: $text";
13 $include{$text}{$_} = 1;
20 # Do we care about chained includes???
24 while (my ($text, $included) = each %include) {
25 for my $i (keys %$included) {
26 # $text has include::$i; if $i includes $j
27 # $text indirectly includes $j.
28 if (exists $include{$i}) {
29 for my $j (keys %{$include{$i}}) {
30 if (!exists $include{$text}{$j}) {
31 $include{$text}{$j} = 1;
41 while (my ($text, $included) = each %include) {
42 if (! exists $included{$text} &&
43 (my $base = $text) =~ s/\.txt$//) {
46 $suffix = '7'; # yuck...
48 print "$base.html $base.$suffix : ", join(" ", keys %$included), "\n";