runfilterchain
来自「j2ee API 开发重要工具 免费下载 欢迎使用」· 代码 · 共 33 行
TXT
33 行
#!/bin/cshsource ../../env.cfgset MODE = "echo"if ($1 == "-q") then set MODE = "quiet" shiftendifif ("$4" == "" || $5 != "") then echo Usage: echo " runFilterChain {-q} <stylesheet1> <stylesheet2> <xmlFile> <outputFile>" exitendifecho ""echo RUNNING FILTER CHAINrm -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.htmlendif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?