?? 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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -