Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/batch-file/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Batch file 使用batchscript为练习创建空白/空模板html&;css_Batch File - Fatal编程技术网

Batch file 使用batchscript为练习创建空白/空模板html&;css

Batch file 使用batchscript为练习创建空白/空模板html&;css,batch-file,Batch File,我使用batchscript和名为folders.txt的外部文本文件创建了用于练习的空模板html和css。 Folder.txt是一个外部文本文件工作文件夹,用于生成1到10个文件夹,每个文件夹内都有相应的文件名:1.html&1.css、2.html&2.css。。。10.html和10.css 问题是,用于打开和关闭html标记的符号标记在batscript中由组成,这些标记作为控制字符,不能用于在batchscript中生成回显行。 可以使用一个溶液对应的替换标记来代替该标记:按CTR

我使用batchscript和名为folders.txt的外部文本文件创建了用于练习的空模板html和css。 Folder.txt是一个外部文本文件工作文件夹,用于生成1到10个文件夹,每个文件夹内都有相应的文件名:1.html&1.css、2.html&2.css。。。10.html和10.css 问题是,用于打开和关闭html标记的符号标记在batscript中由<,>组成,这些标记作为控制字符,不能用于在batchscript中生成回显行。 可以使用一个溶液对应的替换标记来代替该标记:按CTRL+H
对于开口标记,<可以是[,
对于结束标记>可以],

如果可能的话,如何更容易获得直接的结果?

转义您的字符:
^
这就是我想让工作更轻松的原因-非常感谢。。。。。。。。。。。。。。。。。。。。。。echo^>%%a\%%a.html“echo^>>%%a\%%a.html”。