如何在单个 cmd 调用中表达以下批处理步骤?
假设我在批处理文件中有如下步骤。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效
This should work