gpt4 book ai didi

batch-file - 从另一个批处理文件中调用批处理中的子程序

转载 作者:行者123 更新时间:2023-12-03 18:23:45 25 4
gpt4 key购买 nike

文件1.bat:

@echo off
:Test
echo in file one
call file2.bat (Here i want to call only Demo routine in the file2.bat)

file2.bat:
:hello
echo in hello
:Demo
echo in Demo

从批处理文件 1 我想调用批处理文件 2 中的子例程。
我试过例如 call file2.bat:Demo但它没有给出正确的结果。

我怎么能做到这一点?

最佳答案

带有子程序的文件必须如下所示:

@echo off
call :%*
exit /b %errorlevel%

:hello
echo in hello
exit /b 0
:Demo
echo in Demo with argument %1
exit /b 0

然后从另一个文件中,您可以像这样称呼它
call file2.bat demo "arg-one"

关于batch-file - 从另一个批处理文件中调用批处理中的子程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30168091/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com