Changeset 11846
- Timestamp:
- Feb 15, 2007, 4:53:19 PM (19 years ago)
- Location:
- trunk/ippScripts/scripts
- Files:
-
- 2 added
- 1 edited
-
ipp_serial_phase0.pl (modified) (3 diffs)
-
ipp_serial_phase2.pl (added)
-
ipp_serial_phase3.pl (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippScripts/scripts/ipp_serial_phase0.pl
r11414 r11846 12 12 use Pod::Usage qw( pod2usage ); 13 13 14 my ($dbname # Database name to use 14 my ($dbname, # Database name to use 15 $workdir, # Working directory 15 16 ); 16 17 GetOptions( 17 'dbname|d=s' => \$dbname, 18 'dbname|d=s' => \$dbname, 19 'workdir|w=s' => \$workdir, 18 20 ) or pod2usage( 2 ); 19 21 … … 50 52 51 53 my $command = "$phase0_imfile --exp_tag $exp_tag --class $class --class_id $class_id --uri $uri --dbname $dbname"; 54 $command .= " --workdir $workdir" if defined $workdir; 52 55 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 53 56 run( command => $command, verbose => 1 ); … … 69 72 70 73 my $command = "$phase0_exp --exp_tag $exp_tag --dbname $dbname"; 74 $command .= " --workdir $workdir" if defined $workdir; 71 75 my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) = 72 76 run( command => $command, verbose => 1 );
Note:
See TracChangeset
for help on using the changeset viewer.
