一些项目中用到的脚本和批处理

简介:
描述:用于在linux下面备份项目代码.
# !/bin/sh
#FileName :backup

DIRS= " server client Common MSVC SimClient Robot " 
BACKUP= " ./ "proj_$(date + %y%m%d).tgz 

tar -c  $DIRS | gzip - 9 >  $BACKUP 

文件明:clean.bat
描述:用于在windows下面清除vs产生的中间文件.
del *.pch /s /q
del *.ncb /s /q
del *.opt /s /q
del *.plg /s /q
del *.obj /s /q
del *.bsc /s /q
del *.bak /s /q
del *.pdb /s /q
del *.mdb /s /q
del *. exp /s /q
del *.ilk /s /q
del *.idb /s /q
del *.aps /s /q
del *.suo /s /q /a:h
del *.o /s /q
pause

文件名:Pack.bat
描述:用于在windows下打包文件.
@echo  on
del /q/f/s/a *.dat *.db
for /f "usebackq " %%i in (`dir /ad /b`)  do start /w winrar a "%%i.dat" -afzip -pPassword -m5 -x"*.dat" "%%i"
pause

以上是我比较常用一点的小工具.
还有Makefile.
记得以前有一个用于在linux下面提交CVS的脚本,不过不太常用,就不知道扔哪去了.
目录
相关文章
|
8月前
|
Shell 开发工具 数据安全/隐私保护
构建作业
构建作业
44 1
|
Windows
使用bat批处理来简化程序使用
使用bat批处理来简化程序使用
|
5月前
|
DataWorks 算法 调度
B端算法实践问题之配置脚本以支持blink批处理作业的调度如何解决
B端算法实践问题之配置脚本以支持blink批处理作业的调度如何解决
57 1
|
7月前
|
网络协议 安全 Windows
【bat】批处理脚本大全
【bat】批处理脚本大全
165 2
|
7月前
|
Windows
windows系统bat批处理 执行后 隐藏批处理本身
windows系统bat批处理 执行后 隐藏批处理本身
52 0
|
8月前
|
监控 Java 数据库连接
kettle开发-远程执行作业
kettle开发-远程执行作业
320 0
|
Shell Perl Android开发
|
JSON 缓存 API
Flink运行时之批处理程序生成计划
批处理程序生成计划 DataSet API所编写的批处理程序跟DataStream API所编写的流处理程序在生成作业图(JobGraph)之前的实现差别很大。流处理程序是生成流图(StreamGraph),而批处理程序是生成计划(Plan)并由优化器对其进行优化并生成优化后的计划(OptimizedPlan)。
2024 0

热门文章

最新文章