Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

增加windows下cmd命令行操作 #77

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions languages/cmd.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
##############################################################################
# CMD CHEATSHEET (中文速查表) - by 180909 (created on 2021/04/05)
# https://github.com/skywind3000/awesome-cheatsheets
##############################################################################

##############################################################################
# 常用快捷键
##############################################################################

CTRL+A # 当前行全选
CTRL+C # 结束当前命令/复制
CTRL+F # 查找
CTRL+H # 删除一个字符
CTRL+V # 黏贴

##############################################################################
# 基本操作
##############################################################################

exit # 推出当前登录
echo {anything} # 显示anything
where {language} # 显示安装路径

cmd # 打开一个cmd控制台
powershell # 打开一个powershell控制台

cls # 清除屏幕内容

##############################################################################
# 目录操作
##############################################################################
cd # 显示当前所在目录
cd {dirname} # 进入目录
cd \ # 返回当前盘根目录
mkdir {dirname} # 创建目录
md {dirname} # 创建目录
dir # 列出当前目录栈
cd .. # 返回上层目录

##############################################################################
# 文件操作
##############################################################################
cd.>{fn} # 创建文件
copy {fn} {fn1} # 复制文件
xcopy {dn} {dn1} # 复制文件夹
del {fn} # 删除文件
ren {fn} {fn} # 重命名文件
type {fn} # 查看文件内容

##############################################################################
# 网络管理
##############################################################################
ipconfig # 显示绑定到TCP/IP的每个适配器的IP地址、子网掩码和默认网关(/help)
netstat # 显示协议统计信息和当前 TCP/IP 网络连接(-help)

##############################################################################
# 有趣的命令行
##############################################################################
mspaint # 打开画图工具
calc # 打开计算器
regedt32 # 打开注册表

##############################################################################
# References
##############################################################################
https://jingyan.baidu.com/article/ceb9fb1074947b8cad2ba0f9.html