Changeset 27866
- Timestamp:
- May 6, 2010, 9:18:41 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/scripts/removeFromDatastore.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/scripts/removeFromDatastore.pl
r27843 r27866 5 5 use IPC::Cmd 0.36 qw( can_run run ); 6 6 use Getopt::Long qw( GetOptions :config auto_help auto_version gnu_getopt ); 7 use Pod::Usage qw( pod2usage ); 7 8 8 9 my $start = undef; 9 10 my $end = undef; 10 my $product = "PSPS_test";11 my $product = undef; 11 12 12 13 GetOptions( … … 18 19 pod2usage( 19 20 -msg => "\n Required options:\n\n". 20 "--start<init|det|diff|stack>\n". 21 "--end <path>\n". 21 "--start <jobStartNumber> [--end <jobEndNumber>]\n". 22 22 "--product <datastoreProduct>\n", 23 23 -exitval => 3 24 24 ) unless 25 25 defined $product and 26 defined $start and 27 defined $end; 26 defined $start; 28 27 28 29 if (!defined $end) {$end = 1000000;} 29 30 30 31 my $i;
Note:
See TracChangeset
for help on using the changeset viewer.
