#!/bin/sh


cmp /DATA/CLUSTER/SOFT/CLL3/resource/xml/cldataset_starttime_endtime.xml /home/penou/DATA/CLUSTER/SOFT/CLL3/resource/xml/cldataset_starttime_endtime.xml > /dev/null
code=$? #0:idem

if [ $code -eq 0 ]; then
	echo idem cldataset_starttime_endtime.xml
else
	echo diff cldataset_starttime_endtime.xml
	vimdiff /DATA/CLUSTER/SOFT/CLL3/resource/xml/cldataset_starttime_endtime.xml /home/penou/DATA/CLUSTER/SOFT/CLL3/resource/xml/cldataset_starttime_endtime.xml 
fi
