如何创建批处理文件以创建创建批处理文件的批处理文件

时间:2013-07-30 05:03:02

标签: batch-file

我想创建一个名为test1的批处理文件,该文件创建一个名为test2的批处理文件,该文件创建一个名为test3的批处理文件 我做了这个:

@ECHO OFF
ECHO ECHO > test3.bat > test2.bat

但它不起作用。 有什么帮助吗?

1 个答案:

答案 0 :(得分:2)

你必须使用插入符>

来逃避^之类的特殊字符
echo echo echo hello ^>t3.bat >t2.bat
type t2.bat
call t2.bat
type t3.bat
call t3.bat