#!/bin/sh
 
echo
echo starting multimon.new.py at `date`
 
database="sps-dbs"
computers="sps-ichub-cont01 sps-ichub-cont02 sps-ithub-cont01"
 
 
 
cd $HOME/monitoring
 
year=$(date +%Y)
month=$(date +%m)
day=$(date +%d)
 
mkdir $year
cd $year
mkdir $month
cd $month
mkdir $day
cd $day
 
nohup multimon.new.py -H ${database} -d 10 -S normalFAT -o $HOME/monitoring/$year/$month/$day ${computers}
 
#mv $HOME/monitoring/$year/$month/$day $HOME/monitoring/$year/$month/$day
 
