Windows CMD命令对应linux命令

发布于 2024-11-02 02:23:53 字数 381 浏览 1 评论 0原文

wget http://tesseract-ocr.googlecode.com/files/tesseract-3.00.tar.gz
tar -zxvf tesseract-3.00.tar.gz
rm -f tesseract-3.00.tar.gz
git clone https://android.googlesource.com/platform/external/jpeg libjpeg
git checkout e0eadaa39b72e33f032220246c771d7302ebeaf8
cd ..
export TESSERACT_PATH=${PWD}/tesseract-3.00

上面提到的是一些Linux命令。我需要上面提到的相应的Windows命令。请帮忙。

wget http://tesseract-ocr.googlecode.com/files/tesseract-3.00.tar.gz
tar -zxvf tesseract-3.00.tar.gz
rm -f tesseract-3.00.tar.gz
git clone https://android.googlesource.com/platform/external/jpeg libjpeg
git checkout e0eadaa39b72e33f032220246c771d7302ebeaf8
cd ..
export TESSERACT_PATH=${PWD}/tesseract-3.00

Above mentioned are some Linux commands. I need the corresponding Windows commands of the above mentioned ones. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

脸赞 2024-11-09 02:23:53

无论如何,您至少需要安装 wgettargit。据我所知,无论如何,git 都附带了 Cygwin 的一半,因此您可以使用其他命令(和 bash)。

无论如何:

  • wgetwget
  • tartar
  • rm -f → <代码>del /f
  • gitgit
  • cd ..cd ..
  • 导出设置

    设置 TESSERACT_PATH=%CD%\tesseract-3.00
    

You need at least wget, tar and git installed anyway. As far as I know git comes with half of Cygwin anyway so you'd have the other commands (and a bash) available.

In any case:

  • wgetwget
  • tartar
  • rm -fdel /f
  • gitgit
  • cd ..cd ..
  • exportset:

    set TESSERACT_PATH=%CD%\tesseract-3.00
    
嘿哥们儿 2024-11-09 02:23:53

也许您应该使用 Windows Git 客户端(例如 TortoiseGit)来下载 Tesseract 来源。或者您可以简单地下载他们的 最新的 Windows EXE 版本。无论如何,您可能最好下载已编译的版本。从头开始构建需要一些基础知识。

Perhaps you should use a Windows Git client, like TortoiseGit, to download Tesseract sources. Or you could simple download their latest Windows EXE release. Probably you'd be better downloading the compiled release anyway. Building from scratch assumes some basic knowledge.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文