📄 changelog-report
字号:
#!/bin/sh## changelog-report - Report changes to ChangeLog## DO NOT RUN THIS SCRIPT unless you make damn sure the e-mail address points# at somewhere who wants to receive it.# # This script reports changes to the ChangeLog file in the Kannel CVS# repository.## Lars Wirzenius <liw@wapit.com>#set -eaddr=""workdir="$HOME/gateway"tmp=ChangeLog.tempcd $workdircvs -Q update ChangeLogdiff -w -b -B -t ChangeLog.old ChangeLog | sed -n '/^> /s///p' >> $tmp || trueif test -s $tmpthen ( echo 'Changes to gateway ChangeLog.' echo '' cat $tmp ) | mail -s 'ChangeLog update' $addrficp ChangeLog ChangeLog.oldrm -f $tmp
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -