我有一个批处理脚本,它有一个变量'%4',它是随机文件名,但有时它的名称如下:
some.thing.here.mp3
some.other.thing.mp3
and.another.mp3
and.some.file.mp3
如果文件名包含单词'some',那么我想让它转到EOF(所以除了第三个文件之外的所有文件......)
到目前为止,我有这个但是它没有工作
IF /I "%4"=="some" GOTO EOF
答案 0 :(得分:0)
试试这个:
echo "%4" | find /i "some" >nul 2>&1 && GOTO:EOF