Help for this page

Select Code to Download


  1. or download this
    $VAR1 = {
              'data' => {
    ...
                           'fileC' => 10
                         }
            };
    
  2. or download this
    sub encode
    {
    ...
        my @json_arr = JSON::PP->new->encode($href);
        return convert_file_to_arr($path,@json_arr);
    }
    
  3. or download this
    sub decode
    {
    ...
        %{$href} = %{JSON::PP->new->decode($json_data)};
        return 1; 
    }
    
  4. or download this
    sub merge_files_and_exec
    {
    ...
            decode($path,$data_href);
        }
    }
    
  5. or download this
    $VAR1 = {
              'data' => {
    ...
                           'fileE' => 3
                         }
            };
    
  6. or download this
    $VAR1 = {
              'data' => {
    ...
                           'fileE' => 3
                         }
            };