Index: src/bin/crawl
===================================================================
--- src/bin/crawl	(revision 1460645)
+++ src/bin/crawl	(working copy)
@@ -19,7 +19,7 @@
 #
 # 
 # UNLIKE THE NUTCH ALL-IN-ONE-CRAWL COMMAND THIS SCRIPT DOES THE LINK INVERSION AND 
-# INDEXING FOR EACH SEGMENT
+# INDEXING FOR EACH BATCH
 
 SEEDDIR="$1"
 CRAWL_ID="$2"
@@ -112,7 +112,7 @@
   echo `date` ": Iteration $a of $LIMIT"
 
   echo "Generating a new fetchlist"
-  $bin/nutch generate $commonOptions $CRAWL_ID/crawldb $CRAWL_ID/segments -topN $sizeFetchlist -numFetchers $numSlaves -noFilter -adddays $addDays
+  $bin/nutch generate $commonOptions $CRAWL_ID/crawldb $CRAWL_ID/batches -topN $sizeFetchlist -numFetchers $numSlaves -noFilter -adddays $addDays
   
   if [ $? -ne 0 ] 
   then exit $? 
@@ -126,7 +126,7 @@
   then exit $? 
   fi
 
-  # parsing the segment
+  # parsing the batch
   echo "Parsing : "
   # enable the skipping of records for the parsing so that a dodgy document 
   # so that it does not fail the full task
@@ -137,7 +137,7 @@
   then exit $? 
   fi
 
-  # updatedb with this segment
+  # updatedb with this batch
   echo "CrawlDB update"
   $bin/nutch updatedb $commonOptions
 
