#!/bin/bash

AREA=$1
CHECK=$2
MANUAL_TEXT=$3

# generate a random number between 1 and 2
NUM=`shuf -i1-2 -n1`

sleep 1

if [ $NUM -eq 1 ]; then
  echo "OK"
  echo "This will go the obs..."
  echo $AREA
  echo $CHECK
  echo $MANUAL_TEXT
else
  echo "ERROR<br>This is a big message with a lot of text just to make a trial"
fi

