#!/bin/sh
 
echo
echo starting multimon.py at `date`
 
database="157.132.42.221"
computers="localhost"
 
 
 
cd $HOME/monitoring
 
year=$(date +%Y)
month=$(date +%m)
day=$(date +%d)
 
mkdir $year
cd $year
mkdir $month
cd $month
mkdir $day.deadtime51us
cd $day.deadtime51us
 
nohup multimon.py -H ${database} -S normalFAT -d 10 -o $HOME/monitoring/$year/$month/$day.deadtime51us ${computers} &
 
