Help for this page

Select Code to Download


  1. or download this
    $content_dem = "$content_dem"."DEM"."\t"."1"."\t"."1"."\n";
    
  2. or download this
    #Remove commas
    $content =~ s!, "?!!gis;
    @array = split(/"/, $content);
    
  3. or download this
    if (system("/bin/cp $temp_cur $final_file")) {
        printf("Error - file '$final_file' not updated.\n");
        exit(-1);
    }
    
  4. or download this
    select STDOUT;
    $| = 1;
    open SAVEOUT, ">&STDOUT";
    close STDOUT;
    open STDOUT, ">&SAVEOUT";