Automatically exported from code.google.com/p/planningalerts
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

15 行
270 B

  1. #!/bin/bash
  2. echo Removing contents of CGI directory
  3. svn rm --force ../CGI/*
  4. echo Running generateCGIScripts
  5. python generateCGIScripts.py
  6. svn add ../CGI/*
  7. echo Committing changes to svn
  8. (cd ../CGI ; svn commit -m "Removing and regenerating CGI directory")
  9. echo Done