changelog-report
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. #!/bin/sh
  2. #
  3. # changelog-report - Report changes to ChangeLog
  4. #
  5. # DO NOT RUN THIS SCRIPT unless you make damn sure the e-mail address points
  6. # at somewhere who wants to receive it.
  7. # This script reports changes to the ChangeLog file in the Kannel CVS
  8. # repository.
  9. #
  10. # Lars Wirzenius <liw@wapit.com>
  11. #
  12. set -e
  13. addr=""
  14. workdir="$HOME/gateway"
  15. tmp=ChangeLog.temp
  16. cd $workdir
  17. cvs -Q update ChangeLog
  18. diff -w -b -B -t ChangeLog.old ChangeLog | sed -n '/^> /s///p' >> $tmp || true
  19. if test -s $tmp
  20. then
  21. (
  22. echo 'Changes to gateway ChangeLog.'
  23. echo ''
  24. cat $tmp
  25. ) | mail -s 'ChangeLog update' $addr
  26. fi
  27. cp ChangeLog ChangeLog.old
  28. rm -f $tmp