Help for this page

Select Code to Download


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