Changeset 27843 for trunk/ippToPsps
- Timestamp:
- May 3, 2010, 10:55:39 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/ippToPsps/scripts/removeFromDatastore.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippToPsps/scripts/removeFromDatastore.pl
r27730 r27843 6 6 use Getopt::Long qw( GetOptions :config auto_help auto_version gnu_getopt ); 7 7 8 my $start; 9 my $product; 8 my $start = undef; 9 my $end = undef; 10 my $product = "PSPS_test"; 10 11 11 12 GetOptions( 12 13 'start|s=s' => \$start, 14 'end|e=s' => \$end, 13 15 'product|p=s' => \$product, 14 16 ) or pod2usage( 2 ); 15 17 18 pod2usage( 19 -msg => "\n Required options:\n\n". 20 "--start<init|det|diff|stack>\n". 21 "--end <path>\n". 22 "--product <datastoreProduct>\n", 23 -exitval => 3 24 ) unless 25 defined $product and 26 defined $start and 27 defined $end; 28 29 16 30 my $i; 17 31 18 for ($i = $start; $i < 100000; $i++) {32 for ($i=$start; $i<$end+1; $i++) { 19 33 20 34 my $job = sprintf("J%06d", $i);
Note:
See TracChangeset
for help on using the changeset viewer.
