源码地带 > 电路图 > 电子资料下载 > 网络 >ipsec vpn > 查看压缩包源码

ipsec vpn

源代码在线查看: regress-chart.sh

软件大小: 3514 K
上传用户: akk79600872
关键词: ipsec vpn
下载地址: 免注册下载 普通下载 VIP

相关代码

				#!/bin/sh								# $Id: regress-chart.sh,v 1.2 2002/06/09 21:14:45 mcr Exp $				#				# this script produces a graph of FreeSWAN regression testing status				#				# note that this timefmt requires gnuplot 3.7.2+				# see http://www.sourceforge.net/projects/gnuplot				#								tree=$1								cd $tree || exit 1								cat */stats.txt | sort -n >regressstats.txt				gnuplot 				set terminal png				set output 'regressgraph.png'				set timefmt '%s'				set xdata time				set yrange [0:400]				plot 'regressstats.txt' using 1:2 title "total" with linespoints , 'regressstats.txt' using 1:3 title "passing" with points, 'regressstats.txt' using 1:4 title "failing" with linespoints, 'regressstats.txt' using 1:5 title "missing" with linespoints				EOF											

相关资源