find命令总是返回1

时间:2017-01-19 02:42:59

标签: batch-file tortoisesvn

find "a" "C:\a.txt" && (
    echo found >CON
) || (
    echo not found >CON
)
echo %errorlevel% >CON
if errorlevel 1  (
    echo not found >CON
) else (
    echo found >CON
)

这是我的tortoisesvn本地预提交钩子。对我来说,它总是“找不到”。

它出了什么问题?

enter image description here

1 个答案:

答案 0 :(得分:0)

事实证明我必须使用findstr