?? build_page.sh
字號:
#!/bin/bash
#
# This script is used for building the muParser html page from
# html templates.
#
rm -rf ../*.html
#
# add navigation bar to all html templates starting with mup_*
#
for file in mup_*
do
echo processing $file
cat navigation.html | sed "/\$PLACEHOLDER/r $file" > ../$file
done
# create index.html
cp ../mup_intro.html ../index.html
cat ../mup_intro.html | sed "/\$STAT_COUNTER/r stat_counter.html" > ../index.html
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -