Day02 shortcut keys + simple dos command

Shortcut + simple dos command

hot key

Select all: cirl+a

Copy: cirl+c

Paste: cirl+v

Cancel: cirl+z

Save: cirl+s

Close the window: alt+F4

Permanently delete: shift+delete

Run: windows+r

Turn on my computer: windows+e

Open the task manager: cirl+ shift+esc

Switch application: windows+tab


Simple dos command

The way to open cmd:

1. Start + windows system + command prompt

2. windows+ r, enter cmd to open the console

3. Under any folder, hold down the shift key + right-click and select Windows powershell

4. Open my computer, add cmd path in front of the address bar of the explorer

How to run as an administrator?

Start+windows system+right click on command prompt+more+run as administrator

Commonly used dos commands

Drive letter switch (this ':' is an English colon)

盘名 :

View everything in the current directory

dir

Directory switch

cd

从c盘进入d盘: cd /d d:
从c盘进入d盘的文件:  cd /d d:\文件名
返回上一级:cd..
进入下一级:cd 文件名

Clean screen

cls (clear screen)

Exit the terminal (cmd )

exit

View computer IP

查看电脑配置: ipconfig

Open the program

直接输入程序的英文 计算器calc 画板mspaint 记事本notepad等

Find the IP of the website

ping +网址

File operations

创建文件夹:md + 文件名
移除文件夹:rd + 文件名
创建文本:cd >a.txt
删除文本:del a.txt

Guess you like

Origin blog.csdn.net/weixin_48804712/article/details/109230042