view twice/graph.sh @ 0:63f0e9bb4a7a

init commit
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Tue, 30 Jan 2018 17:59:44 +0900
parents
children
line wrap: on
line source

#!/bin/sh
gnuplot << EOF
set title "twice"
set terminal svg
plot "gears_dalmore" with l lc rgbcolor "blue"
set output "output.svg"
set xlabel "CPUs"
set xrange[1:32]
set ylabel "time(ms)"
replot "go_dalmore" with l lc rgbcolor "red"
EOF