Jan Dubois <jand@activestate.com> writes: > END { require DB_File; tie my %h, "DB_File", "$ENV{HOME}/zzz"; > $h{$_}++ for values %INC } A raw dump of %INC would be fine, and requires less overhead, e.g. END { open my $fh, '>>', "$ENV{HOME}/zzz"; print { $fh } localtime, " $$\n", map { "$_\n" } for values %INC; } -- JohanThread Previous | Thread Next