gpt4 book ai didi

windows - 在批处理文件中运行命令行

转载 作者:可可西里 更新时间:2023-11-01 11:21:51 26 4
gpt4 key购买 nike

我有以下代码似乎无法正常工作 - 有人能够协助如何在批处理文件中运行命令行

@echo off

set changeFrom=321
set changeTo=123
set origFile=config.txt
set newFile=config1.txt

test.bat %changeFrom% %changeTo% %origFile%>%newFile%
del %origFile%
ren %newFile% %origFile%

::end

我有一个文件“test.bat”,其中包含用于替换文件中字符串的代码 - 但我不明白它是如何工作的?

最佳答案

您需要使用 call 从第一个开始执行第二个 bat 文件,如下所示:

call test.bat %changeFrom% %changeTo% %origFile%>%newFile%

不调用第一个批处理脚本将在第二个批处理脚本退出时退出。

关于windows - 在批处理文件中运行命令行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6383667/

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