Author: lewismc
Date: Wed May 16 19:22:48 2012
New Revision: 1339316

URL: http://svn.apache.org/viewvc?rev=1339316&view=rev
Log:
trivial commit to add parserchecker options to CLI 

Modified:
    nutch/branches/nutchgora/src/bin/nutch

Modified: nutch/branches/nutchgora/src/bin/nutch
URL: 
http://svn.apache.org/viewvc/nutch/branches/nutchgora/src/bin/nutch?rev=1339316&r1=1339315&r2=1339316&view=diff
==============================================================================
--- nutch/branches/nutchgora/src/bin/nutch (original)
+++ nutch/branches/nutchgora/src/bin/nutch Wed May 16 19:22:48 2012
@@ -59,6 +59,7 @@ if [ $# = 0 ]; then
   echo " readhostdb     display entries from the hostDB"
   echo " solrindex     run the solr indexer on parsed segments and linkdb"
   echo " solrdedup     remove duplicates from solr"
+  echo " parsechecker   check the parser for a given url"
   echo " plugin        load a plugin and run one of its classes main()"
   echo " junit                 runs the given JUnit test"
   echo " or"
@@ -207,6 +208,8 @@ elif [ "$COMMAND" = "solrindex" ] ; then
 CLASS=org.apache.nutch.indexer.solr.SolrIndexerJob
 elif [ "$COMMAND" = "solrdedup" ] ; then
 CLASS=org.apache.nutch.indexer.solr.SolrDeleteDuplicates
+elif [ "$COMMAND" = "parsechecker" ] ; then
+  CLASS=org.apache.nutch.parse.ParserChecker
 elif [ "$COMMAND" = "plugin" ] ; then
 CLASS=org.apache.nutch.plugin.PluginRepository
 elif [ "$COMMAND" = "junit" ] ; then


Reply via email to