> To have a graphs.sh with that command four times (day, week, month and > year) is ok > if I have only one data to graph, but now I have a > weather-station logging 6 other values (humidity, pressure > and so on) so to have a graph.sh with 28 times that long > command when it should be possible with less?
I am not into shell programming, but I think you mean something like: cmd="rrdtool graph ...."; for i in temperature.rrd:temp humidity.rrd:ds0 bla.rrd:bla0 bli.rrd:ds1; do cmd="$cmd DEF:Outside=/etc/weatherstation/rrddb/$i.rrd:temp:AVERAGE"; done; echo $cmd Serge. ------------- Op de inhoud van dit e-mailbericht en de daaraan gehechte bijlagen is de inhoud van de volgende disclaimer van toepassing: http://www.zeelandnet.nl/disclaimer.php ------------- For the content of this e-mail message and its attachment(s) the following disclaimer applies: http://www.zeelandnet.nl/disclaimer.php -- Unsubscribe mailto:[EMAIL PROTECTED] Help mailto:[EMAIL PROTECTED] Archive http://lists.ee.ethz.ch/rrd-users WebAdmin http://lists.ee.ethz.ch/lsg2.cgi
