Board logo

标题: [特效代码] bat调用kettle脚本 [打印本页]

作者: yangluabab    时间: 2022-7-7 20:07     标题: bat调用kettle脚本

  1. @echo off
  2. REM 开始设置批处理窗口
  3. mode con cols=80 lines=30 & color 0a
  4. title 航发风险管理系统批处理运行程序
  5. set teststring=%1
  6. for /f "skip=3 tokens=4" %%i in ('sc query OracleServiceORCL') do set "zt=%%i" &goto :next
  7. :next
  8. if /i "%zt%"=="RUNNING" (
  9.     echo 生产环境10.10.14.24服务器上oracle数据库服务正在运行,可以正常跑批。
  10. ) else (
  11.     echo 生产环境10.10.14.24服务器上oracle数据库服务处于停止状态。
  12.     echo 准备启动oracle数据库服务。。。
  13.     net start "OracleOraDB11g_Home1TNSListener"
  14.     net start "OracleServiceORCL"
  15.     echo 生产环境10.10.14.24服务器上oracle数据库服务启动成功。
  16. )
  17. echo %teststring%
  18. setlocal ENABLEDELAYEDEXPANSION
  19. REM 批处理中字符串分割实现循环输出
  20. REM 循环遍历并截取
  21. :stringLOOP
  22.     REM 当批处理字符串为空什么也不做
  23.     if "!teststring!" EQU "" goto END
  24.     for /f "delims=_" %%a in ("!teststring!") do set substring=%%a
  25.         REM Do something with the substring -
  26.         REM we just echo it for the purposes of demo
  27.      echo !substring!
  28. ###############我想在这里去写一些逻辑,根据for循环遍历的变量值判断是否等于某个字符串,现在一直提示命令不正确。。。。麻烦大佬帮忙看一下####################
  29.       if !substring! equ "thes"
  30.    (echo 11111111)
  31.    else
  32.    (echo 222222)
  33. ###########################################################################################################
  34. REM Now strip off the leading substring
  35. :striploop
  36.     set stripchar=!teststring:~0,1!
  37.     set teststring=!teststring:~1!
  38.     if "!teststring!" EQU "" goto stringloop
  39.     if "!stripchar!" NEQ "_" goto striploop
  40.     goto stringloop
  41. )
  42. :END
  43. endlocal
  44. pause>nul
复制代码

作者: Batcher    时间: 2022-7-7 21:04

回复 1# yangluabab
  1. if "!substring!" equ "thes" (
  2.     echo 11111111
  3. ) else (
  4.     echo 222222
  5. )
复制代码





欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2