You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by Apache Wiki <wi...@apache.org> on 2007/09/17 10:36:50 UTC

[Nutch Wiki] Trivial Update of "Nutch 0.9 Crawl Script Tutorial" by Lyndon

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Nutch Wiki" for change notification.

The following page has been changed by Lyndon:
http://wiki.apache.org/nutch/Nutch_0%2e9_Crawl_Script_Tutorial

The comment on the change is:
the mergesegs failure test was inverted, needed to test $? -eq instead of -ne 

------------------------------------------------------------------------------
  
  echo "----- Merge Segments (Step 4 of $steps) -----"
  $NUTCH_HOME/bin/nutch mergesegs crawl/MERGEDsegments crawl/segments/*
+ 
+ ---- /!\ '''Edit conflict - other version:''' ----
  if [ $? -eq 0 ]
+ 
+ ---- /!\ '''Edit conflict - your version:''' ----
+ if [ $? -eq 0 ]
+ 
+ ---- /!\ '''End of edit conflict''' ----
  then
      if [ "$safe" != "yes" ]
      then