[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

10元求批处理脚本根据日期全量备份或增量备份

10元求批处理脚本(微信转账,有意请联系微信525245456)),12月20日前有效。

操作系统为win2003,

判断当前日期,如果是1号和15号,执行如下
rsync -vzrtopg --port 28950 --progress /cygdrive/f/codefile 172.16.0.12::BPMDEVServercodefile/日期1   注:“日期1”为当前日期,格式为年月日。

判断当前日期,如果是是后续日期,即(2号至14号,16号至当月最后一天),执行如下
rsync -vzrtopgu --port 28950 --progress /cygdrive/f/codefile 172.16.0.12::BPMDEVServercodefile/日期2/increment/日期3   注:“日期2”和“日期3”格式为年月日,“日期2”为脚本前一步执行时的日期,“日期3”为当天日期。

本帖最后由 zaqmlp 于 2019-12-18 15:43 编辑
  1. @echo off
  2. set info=互助互利,支付宝扫码头像,感谢打赏
  3. cd /d "%~dp0"
  4. >"%tmp%\v.v" echo;d=date:WSH.echo right(year(d),4) ^& right("0" ^& month(d),2) ^& right("0" ^& day(d),2)
  5. for /f "delims=" %%a in ('cscript -nologo -e:vbscript "%tmp%\v.v"') do (set d1=%%a)
  6. set /a d=1%d1:~-2%-100
  7. echo;d1=%d1%
  8. if %d% leq 14 (set d2=%d1:~,6%01)
  9. if %d% geq 16 (set d2=%d1:~,6%15)
  10. echo;d2=%d2%
  11. echo;d=%d%
  12. echo;%d%|>nul findstr "^1$ ^15$"&&(
  13.     "C:\Program Files\cwRsync\bin\rsync.exe" -vzrtopg --port 28950 --progress /cygdrive/f/codefile 172.16.0.12::BPMDEVServercodefile/%d1%
  14. )||(
  15.     "C:\Program Files\cwRsync\bin\rsync.exe" -vzrtopgu --port 28950 --progress /cygdrive/f/codefile 172.16.0.12::BPMDEVServercodefile/%d2%/increment/%d1%
  16. )
  17. :end
  18. echo;%info%
  19. pause
  20. exit
复制代码
提供bat代写,为你省时省力省事,支付宝扫码头像支付
微信: unique2random

TOP

本帖最后由 coolee2020 于 2019-12-18 15:32 编辑
  1. @rem 获取当前的日期以及格式化的日期
  2. @set Lday=%date:~0,4%%date:~5,2%%date:~8,2%
  3. @set sday=%date:~8,2%
  4. @set LastDay1=%date:~0,4%%date:~5,2%01
  5. @set LastDay2=%date:~0,4%%date:~5,2%15
  6. @rem 1号和15号执行第一步
  7. @if %sday%==1 goto yesdo
  8. @if %sday%==15 goto yesdo
  9. goto nodo
  10. :yesdo
  11. rsync -vzrtopg --port 28950 --progress /cygdrive/f/codefile 172.16.0.12::BPMDEVServercodefile/%Lday%
  12. @exit
  13. :nodo
  14. @rem 16-31号执行nextdo1
  15. @if %sday% GTR 15 goto nextdo1
  16. @rem 16-31号执行nextdo2
  17. @if %sday% LSS 15 goto nextdo2
  18. :nextdo1
  19. rsync -vzrtopgu --port 28950 --progress /cygdrive/f/codefile 172.16.0.12::BPMDEVServercodefile/%LastDay2%/increment/%Lday%
  20. @exit
  21. :nextdo2
  22. rsync -vzrtopgu --port 28950 --progress /cygdrive/f/codefile 172.16.0.12::BPMDEVServercodefile/%LastDay1%/increment/%Lday%
  23. @exit
复制代码

TOP

我再补充一下,1号和15号执行的是全备,其他日期执行增量备份。增量备份保存在对于全备的文件夹下,例如16号保存在20191215/increment/20191216

TOP

回复 1# sj180


“日期2”为脚本前一步执行时的日期

这句话怎么理解,脚本应该什么逻辑或条件来判断前一步执行时的日期?请举几个实际的例子说明一下吧
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

本帖最后由 netbenton 于 2019-12-18 23:26 编辑
  1. @echo off
  2. set td=%date:/=%
  3. set td=%td:~0,8%
  4. set dd=%td:~6,2%
  5. set od=none
  6. if exist old_tmp.bat call old_tmp.bat
  7. set t=n
  8. if [%dd%]==[01]  set t=t
  9. if [%dd%]==[15]  set t=t
  10. if [%t%]==[t] (
  11. echo;正在进行全量备份……
  12. rsync -vzrtopg --port 28950 --progress /cygdrive/f/codefile 172.16.0.12::BPMDEVServercodefile/%td%
  13. echo;@set od=%td%>old_tmp.bat
  14. ) else (
  15.     if not [%od%]==[none] (
  16. echo;正在进行增量备份……
  17. rsync -vzrtopgu --port 28950 --progress /cygdrive/f/codefile 172.16.0.12::BPMDEVServercodefile/%od%/increment/%td%
  18.     ) else (
  19. echo;出错!还没全量备份过!
  20. goto :end
  21.     )
  22. )
  23. echo;执行成功!
  24. :end
  25. pause
复制代码

TOP

返回列表