返回列表 发帖
用for语句建立test1.txt、test2.txt和test3.txt三个文本文件。
@echo off
for %%a in (text1 text2 text3) do md %%a
pause

TOP

返回列表