how to run a cmd.exe batch file in a sub shell

前端 未结 2 895
栀梦
栀梦 2021-02-14 21:40

I have a batch file that I usually invoke like this:

 longjob.cmd >result.txt 2>&1

This works fine, but the script changes directory

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-14 22:05

    The call command might be what you want.

    i.e.

    call longjob.cmd >result.txt 2>&1
    

提交回复
热议问题