当前位置: 代码迷 >> 综合 >> [bat]bat命令——findstr
  详细解决方案

[bat]bat命令——findstr

热度:16   发布时间:2023-12-05 20:37:15.0

前言

需要编写bat脚本,判断当前platform name,然后根据这个名字去抓取不同的文件。
需要对比字符串,使用findstr 命令

参考文章

【bat】判断字符串是否包含某字符串
findstr不是内部或外部命令也不是可运行的程序或批处理文件Not able to find…

添加path

在这里插入图片描述

代码

@echo off
set a="55544333"
set c="6666dfsfds"
set b="44"
echo %a%| findstr %b% >nul && (echo %a%include%b%
) || (echo %a%no include%b%
)
echo %c%| findstr %b% >nul && (echo %c%include%b%
) || (echo %c%no include%b%
)
pause

结果

在这里插入图片描述