svn的一个hooks,有过滤特定后缀名,指定文件大小及必须填写注解三个功能

在redhat el5.0+svn1.5.6平台测试没有问题.

      #!/bin/sh
      REPOS="$1"
      TXN="$2"
      RES="OK"
      #此处更改大小限制,这里是10M
      MAX_SIZE=10240000
      #此处增加限制文件后缀名
      FILTER='\.(zip|rar|o|obj|tar|gz)$'

      # Make sure that the log message contains some text.
      #SVNLOOK=/usr/bin/svnlook
      SVNLOOK=/opt/CollabNet_Subversion/bin/svnlook

      $SVNLOOK log -t "$TXN" "$REPOS" | egrep  "[^[:space:]]+" >/dev/null ||
      unset RES
      if [ "$RES" != "OK" ]
      then
      echo "You must input some comments for you commit" >&2
      exit 1
      fi

      files=$($SVNLOOK changed -t $TXN $REPOS |awk '{print $2}')

      for f in $files
      do
      #check file type
      if echo $f|tr A-Z a-z|grep -Eq $FILTER
      then
      echo "File $f is not allow ($FILTER) file" >&2
      exit 1
      fi

      #check file size
      filesize=$($SVNLOOK cat -t $TXN $REPOS $f|wc -c)
      if [ "$filesize" -gt "$MAX_SIZE" ]
      then
      echo "File $f is too large(must <=$MAX_SIZE)" >&2
      exit 1
      fi
      done

      # All checks passed, so allow the commit.
      exit 0

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值