in reply to printing a hash

You could also consider using the Data::Dumper core module. It is very handy in printing hashes, arrays and arbitrary Perl data structures:
use Data::Dumper; print Dumper(\%Scripts);

Replies are listed 'Best First'.
Re^2: printing a hash
by planetscape (Chancellor) on May 27, 2009 at 10:17 UTC