📄 compileapplets.sh
字号:
#= Create empty working directories if they does not exist =================if [ ! -d ./classes ]; then mkdir ./classesfiif [ ! -d ./tmp ]; then mkdir ./tmpfi#= Compile sources and pack web archive ====================================cd srcAppletsjavac -Xlint:deprecation -Xlint:unchecked -classpath . -d ../classes *.javacp ../web/index.html ../classescd ..cd classesjar cf ../tmp/sketch2Dapplet.jar *.classcd ..cp -f web/applet.html tmpcp -f web/index.html tmpcp -f web/startPage.html tmpcd ..#===========================================================================#= EOF =#===========================================================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -