如何在单个 cmd 调用中表达以下批处理步骤?

发布于 2024-11-28 17:27:08 字数 291 浏览 2 评论 0原文

假设我在批处理文件中有如下步骤。

set dir=%CD%
cd ..\notes
dir /b *.tex > %dir%\log.txt
cd %dir%

如何在单个 cmd 调用中表达这些步骤?

我尝试按如下方式调用,

cmd /c set dir=%CD% cd ..\notes dir /b *.tex > %dir%\log.txt cd %dir%

但没有成功。

Assume I have steps in a batch file as follows.

set dir=%CD%
cd ..\notes
dir /b *.tex > %dir%\log.txt
cd %dir%

How to express these steps in a single cmd call?

I attempted to call as follows

cmd /c set dir=%CD% cd ..\notes dir /b *.tex > %dir%\log.txt cd %dir%

but it did not work.

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

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

发布评论

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

评论(1

你是年少的欢喜 2024-12-05 17:27:08

这应该有效

cmd /c "pushd ..\notes & dir /b *.tex > %cd%\log.txt & popd"

This should work

cmd /c "pushd ..\notes & dir /b *.tex > %cd%\log.txt & popd"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文