Skip to content

Commit

Permalink
trivial commit to add parserchecker options to CLI
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/nutch/branches/nutchgora@1339316 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Lewis John McGibbney committed May 16, 2012
1 parent a03fb73 commit 5a1200a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/bin/nutch
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5a1200a

Please sign in to comment.