changelog-report
来自「The Kannel Open Source WAP and SMS gatew」· 代码 · 共 34 行
TXT
34 行
#!/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 + =
减小字号Ctrl + -
显示快捷键?