Home > Article > Operation and Maintenance > What are the commonly used commands in windows command line?
Organization of commonly used commands under the windows command line:
Switch directory
"cd" is to open the directory and change the drive letter. Enter directly
1. Switch from C drive to other drives, D drive and E drive
Enter "d:"
2. Open a folder under the D drive
Enter “cd test”
3. Return to the previous directory
Enter “cd . .”
4. Return to the root directory
Enter “cd \”
View the directory contents
Enter “dir”
Create, copy, and delete directory files or folders
1. Enter the commands "mkdir" and "md" to create a folder
2 , enter the command "type nul>*.*" to create an empty file, enter the command "echo [fileContent]>*.*" to create a fee control folder
3, enter the command "copy test.txt test3. txt" to copy the file
4. Enter the command "xcopy D:\test\test1 d:\test\test3 /s /e" to copy the folder
The parameter "/s" indicates a sub-file Copy together
The parameter "/d" means that the target file will only be overwritten if it is older than the source file
5. Enter the command "del *.*" to delete the file
6. Enter Command "rd
Rename the file
1. Enter the command "ren test1.txt test4.txt" to copy the file
2. Enter the command "ren test2 test4" to copy the folder
View the file content
Enter the command "type test4.txt" to display the text content
Clear screen
Enter the command "cls"
You can also use the following commands to View related information
gpedit .msc-----Group Policy
regedt32-------Registry Editor
netstat -ano-----View port
Nslookup -------IP address detector
logoff---------Logout command
calc-----------Start calculation Device
rononce -p----Shutdown in 15 seconds
mem.exe--------Display memory usage
winmsd----- ----System information
mspaint--------Drawing board
Recommendation:Windows operation and maintenance tutorial
The above is the detailed content of What are the commonly used commands in windows command line?. For more information, please follow other related articles on the PHP Chinese website!