Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试了以下命令来获取文本文件列表。
"%svn%" list "%Path%" -R | findstr /c:".txt" > TxtFile_List.txt
但它显示“'findstr' 未被识别为内部或外部命令,”错误...
与set Path=svn://127.0.0.1:6140/svn/MirrorDB_Dec25/trunk您一起覆盖系统的PATH变量。因此findstr.exe再也找不到了。您应该考虑使用不同的变量名。
set Path=svn://127.0.0.1:6140/svn/MirrorDB_Dec25/trunk
PATH
findstr.exe