Help for this page

Select Code to Download


  1. or download this
      parfile = fopen( uniq_param_name, "w" );
      fprintf( parfile, %s %s %s %s %s %s\n", ip, user, pw, 
    ...
         r = system( line );
         ...
      } ...
    
  2. or download this
    my $parfile = shift;
    open( PAR, $parfile );
    ...
    close PAR;
    unlink $parfile;  # why wait for the C code to do this?
    ...