Index: trunk/ippToPsps/scripts/removeFromDatastore.pl
===================================================================
--- trunk/ippToPsps/scripts/removeFromDatastore.pl	(revision 27843)
+++ trunk/ippToPsps/scripts/removeFromDatastore.pl	(revision 27866)
@@ -5,8 +5,9 @@
 use IPC::Cmd 0.36 qw( can_run run );
 use Getopt::Long qw( GetOptions :config auto_help auto_version gnu_getopt );
+use Pod::Usage qw( pod2usage );
 
 my $start = undef;
 my $end = undef;
-my $product = "PSPS_test";
+my $product = undef;
 
 GetOptions( 
@@ -18,13 +19,13 @@
 pod2usage(
         -msg => "\n   Required options:\n\n".
-        "--start<init|det|diff|stack>\n".
-        "--end <path>\n".
+        "--start <jobStartNumber> [--end <jobEndNumber>]\n".
         "--product <datastoreProduct>\n",
         -exitval => 3
         ) unless
 defined $product and
-defined $start and
-defined $end; 
+defined $start;
 
+
+if (!defined $end) {$end = 1000000;}
 
 my $i;
