📄 runfilterchain
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -