前言
需要编写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