From: <bi...@us...> - 2008-12-16 02:59:13
|
Revision: 2670 http://archive-access.svn.sourceforge.net/archive-access/?rev=2670&view=rev Author: binzino Date: 2008-12-16 02:59:10 +0000 (Tue, 16 Dec 2008) Log Message: ----------- Added a command for running the PageRanker tool. Modified Paths: -------------- trunk/archive-access/projects/nutchwax/archive/bin/nutchwax Modified: trunk/archive-access/projects/nutchwax/archive/bin/nutchwax =================================================================== --- trunk/archive-access/projects/nutchwax/archive/bin/nutchwax 2008-12-16 02:43:25 UTC (rev 2669) +++ trunk/archive-access/projects/nutchwax/archive/bin/nutchwax 2008-12-16 02:59:10 UTC (rev 2670) @@ -50,6 +50,10 @@ shift ${NUTCH_HOME}/bin/nutch org.archive.nutchwax.tools.DumpParallelIndex $@ ;; + pagerank) + shift + ${NUTCH_HOME}/bin/nutch org.archive.nutchwax.tools.PageRanker $@ + ;; *) echo "" echo "Usage: nutchwax COMMAND" @@ -57,6 +61,7 @@ echo " import Import ARCs into a new Nutch segment" echo " add-dates Add dates to a parallel index" echo " dumpindex Dump an index or set of parallel indices to stdout" + echo " pagerank Generate pagerank file for URLs in a 'linkdb'." echo "" exit 1 ;; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |