java指南

源代码在线查看: runfilterchain

软件大小: 16422 K
上传用户: granite518
关键词: java
下载地址: 免注册下载 普通下载 VIP

相关代码

				#!/bin/csh								source ../../env.cfg								set MODE = "echo"				if ($1 == "-q") then				   set MODE = "quiet"				   shift				endif								if ("$4" == "" || $5 != "") then				  echo Usage: 				  echo "    runFilterChain {-q}    "				  exit				endif								echo ""				echo RUNNING FILTER CHAIN				rm -f ../samples/$4.html				$BIN/run  FilterChain ../samples/$1 ../samples/$2  ../samples/$3  >& ../samples/$4.html								# The result of running stylizer is an HTML file. 				# Leave it that way, and let users view it normally.				# But convert the HTML to preformattedtext, as well,				# to make it easy to insert into the HTML page. 				rm -f ../samples/${4}-src.html 				text2html ../samples/$4.html > ../samples/${4}-src.html 								if ($MODE == "echo") then				   more ../samples/$4.html				endif											

相关资源