Help for this page
use strict; use URI::Escape; ... my $frozen=uri_escape(freeze($hashref)); my $output=`otherscript.pl $frozen`; print $output;
use strict; use URI::Escape; ... my $hashref=thaw(uri_unescape(shift @ARGV)); print Dumper $hashref;