『第 5 楼』:
使用 LLM 解释/回答一下
你可以编一个批处理,命名FORMAT.BAT,在MS-DOS里编:
第一种:
c:>copy con FORMAT.BAT
format C: /q
format D: /q
format E: /q
format F: /q
……(有多少分区就有多少条命令,此行无须输入,编完后按F6并回车,存盘)
第二种:
C:>EDIT
(下面的命令在编辑页面中输入,此行无须输入)
format C: /q
format D: /q
format E: /q
format F: /q
……(有多少分区就有多少条命令,此行无须输入,编完后按File-->Save-->选择名称-->OK即可保存)
You can compile a batch file, named FORMAT.BAT, in MS-DOS:
First type:
c:>copy con FORMAT.BAT
format C: /q
format D: /q
format E: /q
format F: /q
……(There are as many commands as there are partitions, this line does not need to be entered, after editing, press F6 and press Enter to save the file)
Second type:
C:>EDIT
(The following commands are entered in the editing page, this line does not need to be entered)
format C: /q
format D: /q
format E: /q
format F: /q
……(There are as many commands as there are partitions, this line does not need to be entered, after editing, press File-->Save-->select the name-->OK to save)
|