[Swift-commit] r8363 - SwiftApps/dsp-swift

ketan at ci.uchicago.edu ketan at ci.uchicago.edu
Sat Jan 17 17:13:43 CST 2015


Author: ketan
Date: 2015-01-17 17:13:42 -0600 (Sat, 17 Jan 2015)
New Revision: 8363

Added:
   SwiftApps/dsp-swift/plotme
Log:
adding plotter

Added: SwiftApps/dsp-swift/plotme
===================================================================
--- SwiftApps/dsp-swift/plotme	                        (rev 0)
+++ SwiftApps/dsp-swift/plotme	2015-01-17 23:13:42 UTC (rev 8363)
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+outfile=$1
+shift
+echo $outfile
+for var in "$@"
+do
+\wc -l $var >> data.dat
+done
+
+cat << EOF > plotit.gp
+set terminal png enhanced
+set output "${outfile}"
+set nokey
+set xlabel "Time in sec"
+set ylabel "number of active jobs"
+set title "A title"
+plot "data.dat" with lines
+EOF
+
+gnuplot plotit.gp
+


Property changes on: SwiftApps/dsp-swift/plotme
___________________________________________________________________
Added: svn:executable
   + *




More information about the Swift-commit mailing list