我想创建一个名为test1的批处理文件,该文件创建一个名为test2的批处理文件,该文件创建一个名为test3的批处理文件 我做了这个:
@ECHO OFF
ECHO ECHO > test3.bat > test2.bat
但它不起作用。 有什么帮助吗?
答案 0 :(得分:2)
你必须使用插入符>
^
之类的特殊字符
echo echo echo hello ^>t3.bat >t2.bat
type t2.bat
call t2.bat
type t3.bat
call t3.bat