⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 build_page.sh

📁 用于计算逻辑与算术表达式
💻 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 + -