⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 do-purge.sh

📁 一个工作流设计及定义的系统,可以直接与数据库结合进行系统工作流程的定义及应用.
💻 SH
字号:
#!/bin/sh#rm -fR work-engine/pool/*#rm work-worklist/store/alpha/*.xml#rm work-worklist/store/bravo/*.xml#rm work-worklist/store/default/*.xml#rm work-worklist/store/querystore/*.xml## purging the poolcd work/engine/pool/ && \for file in $( find * -type d )do    if [ "$file" != 'CVS' ]; then	#echo `pwd`	echo "rm -fR $file"	rm -fR $file    fidoneecho "   pool cleaned."cd ../..echo `pwd`## purging all the storescd worklist/store/ && \for file in $( find * -type d )do    if [ "$file" != 'CVS' ]; then	#echo `pwd`	echo "rm $file/*.xml"	rm $file/*.xml    fidoneecho "   workitem stores cleaned."echo # but this script doesn't clean stores in a database...

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -