From: Antoine Cellerier Date: Tue, 20 May 2008 08:22:52 +0000 (+0200) Subject: Fix bash syntax in rrd doc. X-Git-Tag: 0.9.0-test0~876 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=85ca5599d039c3f3617b7fb1fa0c4f2f1e9a3031;p=vlc Fix bash syntax in rrd doc. --- diff --git a/doc/rrd-howto.txt b/doc/rrd-howto.txt index 0013329b0f..007005b035 100644 --- a/doc/rrd-howto.txt +++ b/doc/rrd-howto.txt @@ -5,7 +5,7 @@ touch rrd rrdtool create vlc.rrd --step 1 "DS:in:GAUGE:10:0:30000" "DS:demux:GAUGE:10:0:30000" "DS:out:GAUGE:10:0:30000" "RRA:AVERAGE:0,5:1:86400" # Start "listening" the RRD file -tail -f rrd |while read in;do;echo $in;rrdtool update vlc.rrd `echo $in`;done +tail -f rrd |while read in;do echo $in;rrdtool update vlc.rrd `echo $in`;done # Start vlc vlc normal_vlc_stuff --extraintf logger --rrd-file rrd