在Windows cmd中cd,如何返回到原始目录?
我正在 cd 到 windows .cmd 文件内的目录,但该文件有多个返回点,
如何在不保存原始目录并在脚本中的每个返回点显式返回到它的情况下返回到原始目录。
我认为这与范围有关......?
I am cd ing to a directory inside a windows .cmd file, but this file has various return points,
how do I make return to the original directory without saving the original directory and returning to it explicitly at every return point in the script.
I think is has something to do with scope....?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需添加另一个间接级别即可。运行以下命令,而不是
original_script.cmd
:Just add another level of indirection. Instead of
original_script.cmd
, run this:使用 PUSHD 和 POPD。
Use PUSHD and POPD.