gpt4 book ai didi

batch-file - 如何从命令提示符对同一文件夹中的多个文件进行tesseract?

转载 作者:行者123 更新时间:2023-12-03 16:36:20 24 4
gpt4 key购买 nike

我知道如何使用 OS X 上的终端对同一目录中的多个文件进行 Tesseract。

for i in *.tif ; do tesseract $i outtext;  done;

有没有人对如何在运行 Windows 的计算机上的命令提示符下执行此操作有任何建议?

最佳答案

什么是 Unix 的 Windows 等价物 for i命令?

与 Windows 相比,如果不确切知道 tesseract 命令在 Unix 上的作用,则很难给出全面的答案。

在 Windows 上,您可以使用 for命令对多个文件执行命令。

从命令行:

for %i in (*.tif) do tesseract %i outtext

在批处理文件中:
for %%i in (*.tif) do tesseract %%i outtext

进一步阅读
  • An A-Z Index of the Windows CMD command line - 与 Windows cmd 行相关的所有内容的绝佳引用。
  • for - 有条件地对多个文件执行命令。
  • 关于batch-file - 如何从命令提示符对同一文件夹中的多个文件进行tesseract?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31680193/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com