常见DOS命令

1.创建文件并保存到文件中

echo world is very well > qingshu.txt 创建qingshu.txt的文件内容为 world is very well

2.浏览文件内容

type qingshu.txt

type qingshu.txt | more 分页显示,按空格翻页

3.保存写的东西到文件

copy con qingshu.tx    con是指的屏幕

4.删除文件

del qingshu.txt

del *.txt

del *.zip

del *.*    删除所有文件

/s  逐级删除    /q 不要提示

5.创建文件夹

md feifei

attrib +h feifei    对feifei文件夹添加隐藏属性

attrib -h feife    取消隐藏

attrib +h +s +a feifei      +s提升为被保护的系统文件夹

                            +a不能进行修改和删除

6.创建文件并指定保存路径及大小

fsutil fille createnew c:\system.ini 4000

创建文件system.ini文件,保存到c盘,大小为4000个字节

7.关联默认执行文件

.txt = exefile 默认为txt文件为执行程序

.txt = txtfile 恢复正常

8.关机

shutdown -s -t 100

-s为指定为关机

-t 指定时间 100s

-r 重启 shutdown -r -t 100

-f 强制 shutdown -s -f -t 100

-c 提示 shutdown -s -t 100 -c "认命吧,100s后马上关机"

shutdown -a 取消所有的定时命令

-l 注  拷贝销 shutdown -l -t 100  同logoff相同

9.文件拷贝,移动

拷贝   

    copy haha.txt ..\b\ 把文件haha拷贝到 b文件夹下

移动

    move heihei.txt c:\ 移动heihie.txt到c盘

重命名

    ren haha.txt heihei.txt 把haha.txt改名为heihei.txt

10.用户的命令

net user 列出用户列表

net user shimisi

你可能感兴趣的:(常见DOS命令)