文章预览
当熟悉Linux敲命令之后,其实windows系统也可以通过命令管理,这次内容我们来介绍一下windows系统常用的命令。 首先打开windows系统终端工具,就可以在里面敲命令了。 目录文件操作 #1 cd 改变当前目录 cd C:\ # 切换到C盘 cd / # 切换到根目录 C : \Users\genom\Desktop> # 切换到桌面 #2 dir 显示目录中的文件和子目录的列表,相当于ls #3 mkdir (或 md)创建一个新目录 md test cd test #4 rmdir (或 rd) 删除目录 #5 tree以图形方式显示驱动器或路径的文件夹结构。 tree #6 创建文件 echo "hello, world" >a1.txt #7 type查看文件 type .\a1.txt #8 拷贝文件copy将一个或多个文件复制到另一个位置 copy a1.txt a2.txt #9 del删除文件 del a2.txt #10 rename (或 ren)重命名文件 ren .\a1.txt a3.txt #11 剪切粘贴 md dir2 mv a3.txt dir2 #12 xcopy复制目录 xcopy.exe dir2 dir3 #13 tar tar打包 #14 zip zip打包压缩
………………………………