IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9005


Ignore:
Timestamp:
Sep 27, 2006, 9:53:12 AM (20 years ago)
Author:
Paul Price
Message:

Adding output for running commands.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippScripts/scripts/detrend_calc_norm.pl

    r9004 r9005  
    4646    my @command = split /\s+/, $command;
    4747    my ( $stdin, $stdout, $stderr ); # Buffers for running program
     48    print "Running [$command]...\n";
    4849    run \@command, \$stdin, \$stdout, \$stderr or
    4950        die "Unable to perform dettool -processed -unmask on detrend $detId/$iter: $?";
     51    print $stdout . "\n";
    5052   
    5153    # Parse the output
     
    8183    my ( $stdout, $stderr ); # Buffers for running program
    8284    my @command = split /\s+/, $ppNormCalc;
     85    print "Running [$ppNormCalc]...\n";
    8386    run \@command, \$normData, \$stdout, \$stderr or
    8487        die "Unable to perform ppNormCalc: $?";
     88    print $stdout . "\n";
    8589
    8690    # Parse the output
     
    100104
    101105        my ( $stdin, $stdout, $stderr ); # Buffers for running program
     106        print "Running [$command]...\n";
    102107        run \@command, \$stdin, \$stdout, \$stderr or
    103108            die "Unable to perform dettool -addnormstat for $className: $?";
     109        print $stdout . "\n";
    104110    }
    105111}
Note: See TracChangeset for help on using the changeset viewer.