#!/bin/sh

echo "$1"

if [ "$1" != configure ]
then
  exit 0
fi

ln -sf /opt/nutchez/nutch/bin/nutchez /usr/bin/
chmod 777 /opt/nutchez

show_message(){
  cat /etc/nutch/README
}
show_old_message() {
  echo "You can use the instruction : \" nutchez\" to easyly use nutch"
  echo "Enjoy"
}
show_message
