?? update.sh
字號:
#!/bin/sh# A sample script to create a 'Recent Changes' type file# for a site before each update.# (this file placed in the public domain) - Joe Orton#### Alter the following accordingly, else it won't work. ####html=~/sitedir/changes.htmlawkf=/usr/share/sitecopy/changes.awksitename=mysiteif sitecopy --list ${sitename} > /dev/null; then echo No changes to the site. exitfisitecopy --flatlist ${sitename} | awk -f ${awkf} > ${html}sitecopy --update ${sitename}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -