#!/bin/bash # kill mp-rude measurements at midnight CET source $HOME/dragonlab/etc/start.cfg T=$(env TZ=Europe/Oslo date +%T) if test $T = "00:00:00"; then pkill -f $crude pkill -f $rude pkill -f $trace pkill -f $vmstat fi