diff options
Diffstat (limited to 'src/plot.sh')
-rw-r--r-- | src/plot.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/plot.sh b/src/plot.sh new file mode 100644 index 0000000..60accd9 --- /dev/null +++ b/src/plot.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +echo "set term png size 1600, 1200" +echo "set output 'gstpl.png'" +echo "plot \\" +for file in /tmp/gstpl_pad_*.log ; do echo " '$file' using 2:3 with points, \\"; done +echo " '/tmp/gstpl_rusage.log' using 2:3 with lines" +echo "pause -1" + |