01-DOS命令
作者:互联网
常用的DOS命令
dos命令就是windows的cmd命令行的使用
echo输出
在控制台输出echo 的内容
echo 内容
echo nihao #输出 nihao
echo hello world #输出 hello world
cd
到达指定目录
cd 指定目录
cd c:\windows #到达C盘下的windows目录
cd .. #到达当前目录的上一级目录
dir
查看指定目录的文件
dir 指定目录
dir #查看当前目录的文件
dir /a #查看当前目录的所有文件
dir c:\windows #查看C盘下的Windows目录的文件
echo 输出到文件中
写入一段内容到指定目录文件
echo 内容 > 指定目录
echo Do you like van ♂ 游戏 > Do_this.txt
#在当前目录下创建一个Do_this.txt文件,内容为Do you like van ♂ 游戏
echo hello world > c:\windows\nihao.txt
#在C盘的windows目录下创建一个nihao.txt文件,内容为hello world
cls
清楚当前命令行屏幕
type
查看指定目录文件的内容
type 指定目录文件
type nihao.txt #查看当前目录下的nihao.txt文件
type c:\windows\nihao.txt #查看C盘windows目录下的nihao.txt文件
del
删除指定目录文件
del 指定目录文件
del nihao.txt #删除当前目录下的nihao.txt文件
del *.txt #删除当前目录下的所有.txt文件
del *.zip #删除当前目录下的所有.zip文件
del *.* #删除当前目录下的所有文件
del *.* /q /s #无提示删除所有文件
del c:\windows\nihao.txt #删除C盘windows目录下的nihao.txt文件
mkdir
在指定目录创建文件夹
mkdir 指定目录
mkdir test #在当前目录穿件test目录
mkdir c:\test #在C盘创建test目录
rmdir
删除指定的目录
rmdir 删除指定目录
rmdir test #删除当前目录下的test目录,但是只能删除空目录
rmdir /s test #强制删除当前目录下的test目录
rmdir c:\windows\test #删除windows目录下的test目录00
#注意:如果目录有文件,加入 /s 即可
使用copy换行写入文件
由于echo只能写入一行的文件,很鸡肋
copy con nihao.txt #在当前目录下创建一个nihao.txt文件
我的老姐啊 #在nihao.txt会有一下内容
我好想你
你什么是时候能来看看我
拜托了
^Z #输入完内容,Ctrl + z,然后回车,提示复制完成,内容就复制到了nihao.txt里面
more
一页一页的查看内容,使用空格下一页
命令 | more
dir c:\windows\ | more #一页一页的显示,windows目录下面的文件
type nihao.txt | more #一页一页的显示nihao.txt文件的内容
attrib
修改以文件夹、文件夹的属性
attrib +属性 执行文件目录
attrib +h test #将test目录隐藏,h是hidden的意思
attrib -h test #将test目录取消隐藏
attrib +s +a test # +s 将系统提升为系统级的保护文件夹 只读属性
copy、move
将一个文件复制到另一个目录内
copy\move 复制的文件或目录 复制到哪里
copy nihao.txt c:\ #复制当前目录下的nihao.txt文件到C盘的根目录下
copy nihao.txt ..\b\ #复制当前目录表的nihao.txt文件到当前目录的上一级的同级目录b中去
copy ..\b\nihao.txt d:\ #复制同级目录b中的nihao.txt到D盘的根目录
#move的用法和copy一样
move nihao.txt c:\windows\ #移动nihao.txt到C盘的windows目录下
ren
重命名
ren 修改的文件或目录名 修改后的文件或目录名
ren nihao.txt heihei.txt #将nihao.txt文件名修改为heihei.txt
ren test admin #将test目录或者文件,改名为admin
其实move也可以改名
move nihao.txt heihei.txt #将nihao.txt移动到当前目录,名字修改为heihie.txt
taskkill
taskkill /im 进程名称
taskkill /im /f explorer.exe #杀死一个桌面进程
标签:文件,01,windows,nihao,命令,test,DOS,txt,目录 来源: https://www.cnblogs.com/Junglezt/p/15515185.html