膀胱肿瘤症状:求DOS中命令的help 全集?

来源:百度文库 编辑:高考问答 时间:2024/04/29 22:54:59
当我们进入Dos状态下,键入“help”可以显示Dos的所有命令列表如:
ASSOC ...
AT ...
ATTRIB ...
BREAK ...
CACLS ...
CALL ...
CD ...
... ...
..........
当我们输入“help”和其中某个命令时例如
help cd
help call
就会显示该命令的详细解释
我的问题是:
有谁收集这些所有命令的全部解释,能给我吗?
注意:我不要复制版本,要DOS原本显示的help(解释)
例如:A1.代码:ASSOC
功能:显示或修改文件扩展名关联。
格式:ASSOC [.ext[=[fileType]]]
.ext 指定跟文件类型关联的文件扩展名。
fileType 指定跟文件扩展名关联的文件类型。
备注:键入ASSOC而不带参数,显示当前的文件关联。如果只用 文件扩展名调用ASSOC,则显示那个文件扩展名的当前文件关联。如果 不为文件类型制定的任何参数,命令会删除文件扩展名的关联。
第二位的答案我不明白?详细一些?

@echo off
echo ---------------------->ccc.txt
help ASSOC >>ccc.txt
echo ---------------------->>ccc.txt
help AT >>ccc.txt
echo ---------------------->>ccc.txt
help ATTRIB >>ccc.txt
echo ---------------------->>ccc.txt
help BREAK >>ccc.txt
echo ---------------------->>ccc.txt
help CACLS >>ccc.txt
echo ---------------------->>ccc.txt
help CALL >>ccc.txt
echo ---------------------->>ccc.txt
help CD >>ccc.txt
echo ---------------------->>ccc.txt
help CHCP >>ccc.txt
echo ---------------------->>ccc.txt
help CHDIR >>ccc.txt
echo ---------------------->>ccc.txt
help CHKDSK >>ccc.txt
echo ---------------------->>ccc.txt
help CHKNTFS >>ccc.txt
echo ---------------------->>ccc.txt
help CLS >>ccc.txt
echo ---------------------->>ccc.txt
help CMD >>ccc.txt
echo ---------------------->>ccc.txt
help COLOR >>ccc.txt
echo ---------------------->>ccc.txt
help COMP >>ccc.txt
echo ---------------------->>ccc.txt
help COMPACT >>ccc.txt
echo ---------------------->>ccc.txt
help CONVERT >>ccc.txt
echo ---------------------->>ccc.txt
help COPY >>ccc.txt
echo ---------------------->>ccc.txt
help DATE >>ccc.txt
echo ---------------------->>ccc.txt
help DEL >>ccc.txt
echo ---------------------->>ccc.txt
help DIR >>ccc.txt
echo ---------------------->>ccc.txt
help DISKCOMP >>ccc.txt
echo ---------------------->>ccc.txt
help DISKCOPY >>ccc.txt
echo ---------------------->>ccc.txt
help DOSKEY >>ccc.txt
echo ---------------------->>ccc.txt
help ECHO >>ccc.txt
echo ---------------------->>ccc.txt
help ENDLOCAL >>ccc.txt
echo ---------------------->>ccc.txt
help ERASE >>ccc.txt
echo ---------------------->>ccc.txt
help EXIT >>ccc.txt
echo ---------------------->>ccc.txt
help FC >>ccc.txt
echo ---------------------->>ccc.txt
help FIND >>ccc.txt
echo ---------------------->>ccc.txt
help FINDSTR >>ccc.txt
echo ---------------------->>ccc.txt
help FOR >>ccc.txt
echo ---------------------->>ccc.txt
help FORMAT >>ccc.txt
echo ---------------------->>ccc.txt
help FTYPE >>ccc.txt
echo ---------------------->>ccc.txt
help GOTO >>ccc.txt
echo ---------------------->>ccc.txt
help GRAFTABL >>ccc.txt
echo ---------------------->>ccc.txt
helphelp >>ccc.txt
echo ---------------------->>ccc.txt
help IF >>ccc.txt
echo ---------------------->>ccc.txt
help LABEL >>ccc.txt
echo ---------------------->>ccc.txt
help MD >>ccc.txt
echo ---------------------->>ccc.txt
help MKDIR >>ccc.txt
echo ---------------------->>ccc.txt
help MODE >>ccc.txt
echo ---------------------->>ccc.txt
help MORE >>ccc.txt
echo ---------------------->>ccc.txt
help MOVE >>ccc.txt
echo ---------------------->>ccc.txt
help PATH >>ccc.txt
echo ---------------------->>ccc.txt
help PAUSE >>ccc.txt
echo ---------------------->>ccc.txt
help POPD >>ccc.txt
echo ---------------------->>ccc.txt
help PRINT >>ccc.txt
echo ---------------------->>ccc.txt
help PROMPT >>ccc.txt
echo ---------------------->>ccc.txt
help PUSHD >>ccc.txt
echo ---------------------->>ccc.txt
help RD >>ccc.txt
echo ---------------------->>ccc.txt
help RECOVER >>ccc.txt
echo ---------------------->>ccc.txt
help REM >>ccc.txt
echo ---------------------->>ccc.txt
help REN >>ccc.txt
echo ---------------------->>ccc.txt
help RENAME >>ccc.txt
echo ---------------------->>ccc.txt
help REPLACE >>ccc.txt
echo ---------------------->>ccc.txt
help RMDIR >>ccc.txt
echo ---------------------->>ccc.txt
help SET >>ccc.txt
echo ---------------------->>ccc.txt
help SETLOCAL >>ccc.txt
echo ---------------------->>ccc.txt
help SHIFT >>ccc.txt
echo ---------------------->>ccc.txt
help SORT >>ccc.txt
echo ---------------------->>ccc.txt
help START >>ccc.txt
echo ---------------------->>ccc.txt
help SUBST >>ccc.txt
echo ---------------------->>ccc.txt
help TIME >>ccc.txt
echo ---------------------->>ccc.txt
help TITLE >>ccc.txt
echo ---------------------->>ccc.txt
help TREE >>ccc.txt
echo ---------------------->>ccc.txt
help TYPE >>ccc.txt
echo ---------------------->>ccc.txt
help VER >>ccc.txt
echo ---------------------->>ccc.txt
help VERIFY >>ccc.txt
echo ---------------------->>ccc.txt
help VOL >>ccc.txt
echo ---------------------->>ccc.txt
help XCOPY >>ccc.txt

把以上保存为aaa.bat (可拷到 盘符:\Documents and Settings\用户名\ 文件夹下), 运行,你要的结果存于CCC.TXT

我自己收集了一些,都是从cmd中直接剪下来整理的,要吗?